< prev index next >

test/com/sun/jdi/NotAField.sh

Print this page
rev 16783 : 8176176: fix @modules in jdk_svc tests
Reviewed-by: duke


   9 # published by the Free Software Foundation.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  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 4467887 4913748

  29 #  @summary TTY: NullPointerException at
  30 #           com.sun.tools.jdi.MirrorImpl.validateMirrors
  31 #  @author Tim Bell
  32 #  @key intermittent
  33 #  @run shell NotAField.sh
  34 #
  35 
  36 createJavaFile()
  37 {
  38     cat <<EOF > $classname.java.1
  39 public class $classname {
  40     public static void main(String args[]) {
  41         System.out.println("Hello, world!");
  42     }
  43 }
  44 
  45 EOF
  46 }
  47 
  48 # This is called to feed cmds to jdb.
  49 dojdbCmds()
  50 {
  51    #set -x
  52    cmd stop in $classname.main




   9 # published by the Free Software Foundation.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  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 4467887 4913748
  29 # @key intermittent
  30 # @summary TTY: NullPointerException at
  31 #          com.sun.tools.jdi.MirrorImpl.validateMirrors
  32 # @author Tim Bell
  33 #
  34 # @run shell NotAField.sh
  35 #
  36 
  37 createJavaFile()
  38 {
  39     cat <<EOF > $classname.java.1
  40 public class $classname {
  41     public static void main(String args[]) {
  42         System.out.println("Hello, world!");
  43     }
  44 }
  45 
  46 EOF
  47 }
  48 
  49 # This is called to feed cmds to jdb.
  50 dojdbCmds()
  51 {
  52    #set -x
  53    cmd stop in $classname.main


< prev index next >