jdk/test/com/sun/jdi/NotAField.sh
author ykantser
Mon, 20 Jul 2015 13:14:47 +0200
changeset 31907 cafb1bf49cfb
parent 23046 0b0407b1e2a5
child 31909 8cbbb77c5826
permissions -rw-r--r--
8075658: Mark intermittently failuring core-svc tests Reviewed-by: jbachorik, olagneau, darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#!/bin/sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
#
23046
0b0407b1e2a5 6946101: ShellScaffold.sh based tests can issue "write error: Broken pipe" messages
iignatyev
parents: 5506
diff changeset
     4
# Copyright (c) 2002, 2014, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
# published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#  @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#  @bug 4467887 4913748
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#  @summary TTY: NullPointerException at
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#           com.sun.tools.jdi.MirrorImpl.validateMirrors
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#  @author Tim Bell
31907
cafb1bf49cfb 8075658: Mark intermittently failuring core-svc tests
ykantser
parents: 23046
diff changeset
    32
#  @key intermittent
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#  @run shell NotAField.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
createJavaFile()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    cat <<EOF > $classname.java.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
public class $classname {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    public static void main(String args[]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
        System.out.println("Hello, world!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
EOF
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
# This is called to feed cmds to jdb.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
dojdbCmds()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
   #set -x
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
   cmd stop in $classname.main
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
   runToBkpt
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
   #This works:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
   cmd print "java.lang.Class.reflectionFactory.hashCode()"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
   #This should result in a ParseException: ("No such field in ..."):
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
   cmd print "java.lang.Class.reflectionFactory.hashCode"
23046
0b0407b1e2a5 6946101: ShellScaffold.sh based tests can issue "write error: Broken pipe" messages
iignatyev
parents: 5506
diff changeset
    58
   cmd allowExit cont
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
mysetup()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
   if [ -z "${TESTJAVA}" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
      # TESTJAVA is not set, so the test is running stand-alone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
      # TESTJAVA holds the path to the root directory of the build of the JDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
      # to be tested.  That is, any java files run explicitly in this shell
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
      # should use TESTJAVA in the path to the java interpreter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
      # So, we'll set this to the JDK spec'd on the command line.  If none
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
      # is given on the command line, tell the user that and use a default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
      # THIS IS THE JDK BEING TESTED.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
      if [ -n "$1" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
             TESTJAVA=$1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
         else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
             TESTJAVA=$JAVA_HOME
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
      fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
      TESTSRC=.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
      TESTCLASSES=.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
   fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
   echo "JDK under test is: $TESTJAVA"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
   if [ -z "$TESTSRC" ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        TESTSRC=.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
   fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
   if [ -r $TESTSRC/ShellScaffold.sh ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        . $TESTSRC/ShellScaffold.sh 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
   elif [ -r $TESTSRC/../ShellScaffold.sh ] ; then
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        . $TESTSRC/../ShellScaffold.sh
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
   fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
# You could replace this next line with the contents
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
# of ShellScaffold.sh and this script will run just the same.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
mysetup
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
runit
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
jdbFailIfNotPresent "com.sun.tools.example.debug.expr.ParseException" 50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
pass