< prev index next >

test/com/sun/jdi/ArrayLengthDumpTest.sh

Print this page
rev 12339 : 8075658: Mark intermittently failuring core-svc tests


  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 #
  27 #  @test
  28 #  @bug 4422141 4695338
  29 #  @summary TTY: .length field for arrays in print statements in jdb not recognized
  30 #           TTY: dump <ArrayReference> command not implemented.
  31 #  @author Tim Bell
  32 #

  33 #  @run shell ArrayLengthDumpTest.sh
  34 #
  35 classname=ArrayLengthDumpTarg
  36 
  37 createJavaFile()
  38 {
  39     cat <<EOF > $classname.java.1
  40 class $classname {
  41     static final int [] i = {0,1,2,3,4,5,6};
  42     String [] s = {"zero", "one", "two", "three", "four"};
  43     String [][] t = {s, s, s, s, s, s, s, s, s, s, s};
  44     int length = 5;
  45 
  46     public void bar() {
  47     }
  48 
  49     public void foo() {
  50         ArrayLengthDumpTarg u[] = { new ArrayLengthDumpTarg(),
  51                                     new ArrayLengthDumpTarg(),
  52                                     new ArrayLengthDumpTarg(),




  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 #
  27 #  @test
  28 #  @bug 4422141 4695338
  29 #  @summary TTY: .length field for arrays in print statements in jdb not recognized
  30 #           TTY: dump <ArrayReference> command not implemented.
  31 #  @author Tim Bell
  32 #
  33 #  @key intermittent
  34 #  @run shell ArrayLengthDumpTest.sh
  35 #
  36 classname=ArrayLengthDumpTarg
  37 
  38 createJavaFile()
  39 {
  40     cat <<EOF > $classname.java.1
  41 class $classname {
  42     static final int [] i = {0,1,2,3,4,5,6};
  43     String [] s = {"zero", "one", "two", "three", "four"};
  44     String [][] t = {s, s, s, s, s, s, s, s, s, s, s};
  45     int length = 5;
  46 
  47     public void bar() {
  48     }
  49 
  50     public void foo() {
  51         ArrayLengthDumpTarg u[] = { new ArrayLengthDumpTarg(),
  52                                     new ArrayLengthDumpTarg(),
  53                                     new ArrayLengthDumpTarg(),


< prev index next >