Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4448721

JDI: ArrayReference.setValues(int, List, int, int) doesn't throw IndexOutOfBound

XMLWordPrintable

    • beta2
    • generic
    • generic
    • Verified



      Name: elR10090 Date: 04/20/2001



      Java HotSpot Server and Client VMs (build 1.4.0-beta-b60, build 1.3.1-rc1-b22)
      fail to pass the test

          nsk/jdi/ArrayReference/setValues_ilii/setvaluesilii003
          
      This failure was observed on all platforms and in all modes.

      The test checks if ArrayReference.setValues(int, List, int, int) throws
      IndexOutOfBoundsException if the list of values is smaller inside than the
      given range.

      Debuggee (setvaluesilii003a.java file) defines eight sample arrays of primitive
      types. One for each primitive type. All of them has different lengths.
      Also, debuggee has a number of tested arrays of primitive types. For each
      primitive type a sample array has at least one element less then
      correspondent tested array.

      First of all, debugger (setvaluesilii003.java file) gets each sample field from
      debuggee calling by name, gets its value and casts it to ArrayReference type.
      And then gets list of values from ArrayReference type.

      After that the test gets tested array fields calling by name, gets their values,
      casts to ArrayReference types. And then sets list of sample values to the tested
      array invoking the method setValues(int, List, int, int). Since sample array
      has at least one element less tested array, IndexOutOfBoundsException is
      expected.

      But the exception is not thrown for all fields.

      See log:

      java version "1.4.0-beta"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta-b60)
      Java HotSpot(TM) Server VM (build 1.4.0-beta-b60, compiled mode)
      binder> Listening for a pipe connection to port: 7000
      binder> Binding to pipe socket
      binder> Listening to pipe server socket
      binder> VirtualMachineManager: version 1.4
      binder> FindingConnector: default
      binder> LaunchingConnector:
      binder> name: com.sun.jdi.CommandLineLaunch
      binder> description: Launches target using Sun Java VM command line and attaches to it
      binder> transport: dt_socket
      binder> Connector arguments:
      binder> home=/export/ld59/java/dest_old/jdk1.4.0beta-b60/solx86/jre
      binder> vmexec=java
      binder> options= -classpath
      ".:share/classes:/export/ld59/java/dest/jdk1.4.0beta-b60/solx86/lib/tools.jar"
      binder> main=nsk.jdi.ArrayReference.setValues_ilii.setvaluesilii003a -verbose "-verbose"
      binder> quote="
      binder> suspend=true
      binder> Launch debugee
      debugee.err> debugee.pipe> Making pipe connection to socket: localhost:7000
      debugee.err> DEBUGEE> debugee started.
      test.pipe> Waiting for pipe connection
      debuger> debugee's "ready" signal recieved.
      debuger> Total fields in debugee read: 22 total fields in debuger: 14

      debuger> Got sample fields for primitive types.
      debuger> boolean is nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.z1S
      debuger> byte is nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.b1S
      debuger> char is nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.c1S
      debuger> double is nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.d1S
      debuger> float is nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.f1S
      debuger> int is nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.i1S
      debuger> long is nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.l1S
      debuger> short is nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.r1S

      debuger> Got sample array references for primitive types.
      debuger> boolean is instance of boolean[1] (id=122)
      debuger> byte is instance of byte[2] (id=123)
      debuger> char is instance of char[3] (id=124)
      debuger> double is instance of double[4] (id=125)
      debuger> float is instance of float[5] (id=126)
      debuger> int is instance of int[6] (id=127)
      debuger> long is instance of long[7] (id=128)
      debuger> short is instance of short[8] (id=129)

      debuger> Got list of values for primitive types.
      debuger> boolean is [true]
      debuger> byte is [-128, 127]
      debuger> char is [, ?, ?]
      debuger> double is [-Infinity, 4.9E-324, -1.0, 0.0]
      debuger> float is [-Infinity, 1.4E-45, -1.0, 0.0, NaN]
      debuger> int is [-2147483648, -1, 0, 1, 2147483647, -1]
      debuger> long is [-9223372036854775808, -1, 0, 1, 9223372036854775807, 0, 1]
      debuger> short is [-32768, -1, 0, 1, 32767, -32768, -1, 0]

      debuger> 0 field nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.z1 read.
      debuger> 0 field value is instance of boolean[2] (id=138)
      debuger> 0 field has length 2
      # ERROR: debuger FAILURE 5> IndexOutOfBoundsException is not thrown.
      debuger> 0 field: sublist of length 1 of values set [true] from index 0.
      debuger> 0 field has now length 2
      debuger> 0 field checked.

      debuger> 1 field nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.b1 read.
      debuger> 1 field value is instance of byte[3] (id=139)
      debuger> 1 field has length 3
      # ERROR: debuger FAILURE 5> IndexOutOfBoundsException is not thrown.
      debuger> 1 field: sublist of length 2 of values set [-128, 127] from index 0.
      debuger> 1 field has now length 3
      debuger> 1 field checked.

      debuger> 2 field nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.c1 read.
      debuger> 2 field value is instance of char[4] (id=140)
      debuger> 2 field has length 4
      # ERROR: debuger FAILURE 5> IndexOutOfBoundsException is not thrown.
      debuger> 2 field: sublist of length 3 of values set [, ?, ?] from index 0.
      debuger> 2 field has now length 4
      debuger> 2 field checked.

      debuger> 3 field nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.d1 read.
      debuger> 3 field value is instance of double[5] (id=141)
      debuger> 3 field has length 5
      # ERROR: debuger FAILURE 5> IndexOutOfBoundsException is not thrown.
      debuger> 3 field: sublist of length 4 of values set [-Infinity, 4.9E-324, -1.0, 0.0] from index 0.
      debuger> 3 field has now length 5
      debuger> 3 field checked.

      debuger> 4 field nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.f1 read.
      debuger> 4 field value is instance of float[6] (id=142)
      debuger> 4 field has length 6
      # ERROR: debuger FAILURE 5> IndexOutOfBoundsException is not thrown.
      debuger> 4 field: sublist of length 5 of values set [-Infinity, 1.4E-45, -1.0, 0.0, NaN] from index
      0.
      debuger> 4 field has now length 6
      debuger> 4 field checked.

      debuger> 5 field nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.i1 read.
      debuger> 5 field value is instance of int[7] (id=143)
      debuger> 5 field has length 7
      # ERROR: debuger FAILURE 5> IndexOutOfBoundsException is not thrown.
      debuger> 5 field: sublist of length 6 of values set [-2147483648, -1, 0, 1, 2147483647, -1] from
      index 0.
      debuger> 5 field has now length 7
      debuger> 5 field checked.

      debuger> 6 field nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.l1 read.
      debuger> 6 field value is instance of long[8] (id=144)
      debuger> 6 field has length 8
      # ERROR: debuger FAILURE 5> IndexOutOfBoundsException is not thrown.
      debuger> 6 field: sublist of length 7 of values set [-9223372036854775808, -1, 0, 1,
      9223372036854775807, 0, 1]
      from
      index 0.
      debuger> 6 field has now length 8
      debuger> 6 field checked.

      debuger> 7 field nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.r1 read.
      debuger> 7 field value is instance of short[9] (id=145)
      debuger> 7 field has length 9
      # ERROR: debuger FAILURE 5> IndexOutOfBoundsException is not thrown.
      debuger> 7 field: sublist of length 8 of values set [-32768, -1, 0, 1, 32767, -32768, -1, 0] from
      index 0.
      debuger> 7 field has now length 9
      debuger> 7 field checked.

      debuger> 8 field nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.lF1 read.
      debuger> 8 field value is instance of long[10] (id=146)
      debuger> 8 field has length 10
      # ERROR: debuger FAILURE 5> IndexOutOfBoundsException is not thrown.
      debuger> 8 field: sublist of length 7 of values set [-9223372036854775808, -1, 0, 1,
      9223372036854775807, 0, 1]
      from
      index 0.
      debuger> 8 field has now length 10
      debuger> 8 field checked.

      debuger> 9 field nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.lP1 read.
      debuger> 9 field value is instance of long[11] (id=147)
      debuger> 9 field has length 11
      # ERROR: debuger FAILURE 5> IndexOutOfBoundsException is not thrown.
      debuger> 9 field: sublist of length 7 of values set [-9223372036854775808, -1, 0, 1,
      9223372036854775807, 0, 1]
      from
      index 0.
      debuger> 9 field has now length 11
      debuger> 9 field checked.

      debuger> 10 field nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.lU1 read.
      debuger> 10 field value is instance of long[12] (id=148)
      debuger> 10 field has length 12
      # ERROR: debuger FAILURE 5> IndexOutOfBoundsException is not thrown.
      debuger> 10 field: sublist of length 7 of values set [-9223372036854775808, -1, 0, 1,
      9223372036854775807, 0, 1]
      from
      index
      0.
      debuger> 10 field has now length 12
      debuger> 10 field checked.

      debuger> 11 field nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.lR1 read.
      debuger> 11 field value is instance of long[13] (id=149)
      debuger> 11 field has length 13
      # ERROR: debuger FAILURE 5> IndexOutOfBoundsException is not thrown.
      debuger> 11 field: sublist of length 7 of values set [-9223372036854775808, -1, 0, 1,
      9223372036854775807, 0, 1]
      from
      index
      0.
      debuger> 11 field has now length 13
      debuger> 11 field checked.

      debuger> 12 field nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.lT1 read.
      debuger> 12 field value is instance of long[14] (id=150)
      debuger> 12 field has length 14
      # ERROR: debuger FAILURE 5> IndexOutOfBoundsException is not thrown.
      debuger> 12 field: sublist of length 7 of values set [-9223372036854775808, -1, 0, 1,
      9223372036854775807, 0, 1]
      from
      index
      0.
      debuger> 12 field has now length 14
      debuger> 12 field checked.

      debuger> 13 field nsk.jdi.ArrayReference.setValues_ilii.ClassToCheck.lV1 read.
      debuger> 13 field value is instance of long[15] (id=151)
      debuger> 13 field has length 15
      # ERROR: debuger FAILURE 5> IndexOutOfBoundsException is not thrown.
      debuger> 13 field: sublist of length 7 of values set [-9223372036854775808, -1, 0, 1,
      9223372036854775807, 0, 1]
      from
      index
      0.
      debuger> 13 field has now length 15
      debuger> 13 field checked.

      debugee.err> DEBUGEE> "quit" signal recieved.
      debugee.err> DEBUGEE> completed succesfully.
      # ERROR: debuger FAILURE> TEST FAILED
      binder> Closing pipe server socket
      test.pipe> Closing pipe socket

      The test will appear in the release r04 of testbase_nsk located at:

          /net/sqesvr.eng/export/vsn/VM/testbase/testbase_nsk.v14

      To reproduce the failure, please use 'doit.sh' script found
      in the directory:

          /net/sqesvr.eng/export/vsn/GammaBase/Bugs/<this bug number>

      Use:
          doit.sh $JAVA_HOME
          
      ======================================================================

            rfield Robert Field (Inactive)
            latkinsunw Latkin Latkin (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: