1#!/bin/sh
2
3#
4# Copyright (c) 2002, 2014, Oracle and/or its affiliates. All rights reserved.
5# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6#
7# This code is free software; you can redistribute it and/or modify it
8# under the terms of the GNU General Public License version 2 only, as
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#  @test
27#  @bug 4660756
28#  @summary TTY: Need to clear source cache after doing a redefine class
29#  @author Jim Holmlund
30#  @key intermittent
31#  @run shell/timeout=240 RedefineTTYLineNumber.sh
32
33#set -x
34# These are variables that can be set to control execution
35
36#pkg=untitled7
37#classname=Untitled3
38compileOptions=-g
39#java=java_g
40
41createJavaFile()
42{
43    cat <<EOF > $1.java.1
44
45public class $1 {
46
47  public void B() {
48    System.out.println("in B");
49    System.out.println("in B: @1 delete");
50  }
51
52  // line number sensitive!!! Next line must be line 10.
53  public void A() {
54    System.out.println("in A, about to call B");  // 11 before, 10 afterward
55    System.out.println("out from B");
56  }
57
58  public static void main(String[] args) {
59    $1 untitled41 = new $1();
60    untitled41.A();
61    System.out.println("done");
62  }
63}
64EOF
65}
66
67# This is called to feed cmds to jdb.
68dojdbCmds()
69{
70    cmd stop in shtest.A
71    runToBkpt
72    #jdbFailIfNotPresent "System\.out\.println" 3
73    redefineClass @1
74    cmd pop
75    cmd stop in shtest.A
76    contToBkpt
77    #jdbFailIfNotPresent "System\.out\.println" 3
78}
79
80
81mysetup()
82{
83    if [ -z "$TESTSRC" ] ; then
84        TESTSRC=.
85    fi
86
87    if [ -r $TESTSRC/ShellScaffold.sh ] ; then
88        . $TESTSRC/ShellScaffold.sh 
89    elif [ -r $TESTSRC/../ShellScaffold.sh ] ; then
90        . $TESTSRC/../ShellScaffold.sh
91    fi
92}
93
94# You could replace this next line with the contents
95# of ShellScaffold.sh and this script will run just the same.
96mysetup
97
98runit
99debuggeeFailIfPresent "Internal exception:"
100pass
101