< prev index next >

test/com/sun/jdi/redefine/RedefineTest.java

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


  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  *  @test
  26  *  @bug 4287595
  27  *  @bug 4462989
  28  *  @bug 4531511
  29  *  @summary Test class redefinition
  30  *
  31  *  @author Robert Field
  32  *
  33  *  @library ..
  34  *  @modules jdk.jdi
  35  *  @run build TestScaffold VMConnection TargetListener TargetAdapter
  36  *  @run compile -g RedefineTest.java
  37  *  @run shell RedefineSetUp.sh
  38  *  @run driver RedefineTest
  39  */
  40 import com.sun.jdi.*;
  41 import com.sun.jdi.event.*;
  42 import com.sun.jdi.request.*;
  43 import java.util.*;
  44 import java.io.*;
  45 
  46     /********** target program **********/
  47 
  48 class RedefineTarg {
  49     public static void show(String where){
  50         System.out.println("Returned: " + where);
  51     }
  52 
  53     public static void lastly(String where){
  54     }




  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /**
  25  * @test
  26  * @bug 4287595
  27  * @bug 4462989
  28  * @bug 4531511
  29  * @summary Test class redefinition
  30  *
  31  * @author Robert Field
  32  *
  33  * @library ..
  34  *
  35  * @run build TestScaffold VMConnection TargetListener TargetAdapter
  36  * @run compile -g RedefineTest.java
  37  * @run shell RedefineSetUp.sh
  38  * @run driver RedefineTest
  39  */
  40 import com.sun.jdi.*;
  41 import com.sun.jdi.event.*;
  42 import com.sun.jdi.request.*;
  43 import java.util.*;
  44 import java.io.*;
  45 
  46     /********** target program **********/
  47 
  48 class RedefineTarg {
  49     public static void show(String where){
  50         System.out.println("Returned: " + where);
  51     }
  52 
  53     public static void lastly(String where){
  54     }


< prev index next >