8251132: make main classes public in vmTestbase/jit tests

Reviewed-by: kvn
This commit is contained in:
Igor Ignatyev 2020-08-05 16:39:08 -07:00
parent 3ea5fdc9ac
commit 65577cf58a
138 changed files with 366 additions and 498 deletions

View file

@ -32,15 +32,14 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.DivTest.DivTest * @run main/othervm jit.DivTest.DivTest
* @run driver ExecDriver --java jit.DivTest.DivTest
*/ */
package jit.DivTest; package jit.DivTest;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class DivTest{ public class DivTest{
static int n; static int n;
static boolean test1 (int n1, int n2) { static boolean test1 (int n1, int n2) {
try { try {

View file

@ -29,15 +29,14 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.FloatingPoint.gen_math.Filtering.Filtering * @run main/othervm jit.FloatingPoint.gen_math.Filtering.Filtering
* @run driver ExecDriver --java jit.FloatingPoint.gen_math.Filtering.Filtering
*/ */
package jit.FloatingPoint.gen_math.Filtering; package jit.FloatingPoint.gen_math.Filtering;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class Filtering public class Filtering
{ {
static int N = 1000; static int N = 1000;
static double xx[]; static double xx[];

View file

@ -29,15 +29,14 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.FloatingPoint.gen_math.Loops01.Loops01 * @run main/othervm jit.FloatingPoint.gen_math.Loops01.Loops01
* @run driver ExecDriver --java jit.FloatingPoint.gen_math.Loops01.Loops01
*/ */
package jit.FloatingPoint.gen_math.Loops01; package jit.FloatingPoint.gen_math.Loops01;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class Loops01 public class Loops01
{ {
static final int N = 500; static final int N = 500;

View file

@ -30,8 +30,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.FloatingPoint.gen_math.Loops02.Loops02 * @run main/othervm jit.FloatingPoint.gen_math.Loops02.Loops02
* @run driver ExecDriver --java jit.FloatingPoint.gen_math.Loops02.Loops02
*/ */
package jit.FloatingPoint.gen_math.Loops02; package jit.FloatingPoint.gen_math.Loops02;
@ -39,7 +38,7 @@ package jit.FloatingPoint.gen_math.Loops02;
// Test working with loops and random functions. // Test working with loops and random functions.
import nsk.share.TestFailure; import nsk.share.TestFailure;
class Loops02 public class Loops02
{ {
static final int N = 300; static final int N = 300;

View file

@ -30,15 +30,14 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.FloatingPoint.gen_math.Loops03.Loops03 * @run main/othervm jit.FloatingPoint.gen_math.Loops03.Loops03
* @run driver ExecDriver --java jit.FloatingPoint.gen_math.Loops03.Loops03
*/ */
package jit.FloatingPoint.gen_math.Loops03; package jit.FloatingPoint.gen_math.Loops03;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class Loops03 public class Loops03
{ {
static final int N = 100000; static final int N = 100000;

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.FloatingPoint.gen_math.Loops04.Loops04 * @run main/othervm jit.FloatingPoint.gen_math.Loops04.Loops04
* @run driver ExecDriver --java jit.FloatingPoint.gen_math.Loops04.Loops04
*/ */
package jit.FloatingPoint.gen_math.Loops04; package jit.FloatingPoint.gen_math.Loops04;
@ -38,7 +37,7 @@ package jit.FloatingPoint.gen_math.Loops04;
// Test working with nested loops. // Test working with nested loops.
import nsk.share.TestFailure; import nsk.share.TestFailure;
class Loops04 public class Loops04
{ {
public static void main (String args[]) public static void main (String args[])

View file

@ -29,15 +29,14 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.FloatingPoint.gen_math.Loops05.Loops05 * @run main/othervm jit.FloatingPoint.gen_math.Loops05.Loops05
* @run driver ExecDriver --java jit.FloatingPoint.gen_math.Loops05.Loops05
*/ */
package jit.FloatingPoint.gen_math.Loops05; package jit.FloatingPoint.gen_math.Loops05;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class Loops05 public class Loops05
{ {
static final int N = 100; static final int N = 100;

View file

@ -29,15 +29,14 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.FloatingPoint.gen_math.Loops06.Loops06 * @run main/othervm jit.FloatingPoint.gen_math.Loops06.Loops06
* @run driver ExecDriver --java jit.FloatingPoint.gen_math.Loops06.Loops06
*/ */
package jit.FloatingPoint.gen_math.Loops06; package jit.FloatingPoint.gen_math.Loops06;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class Loops06 public class Loops06
{ {
static final int N = 20; static final int N = 20;

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.FloatingPoint.gen_math.Loops07.Loops07 * @run main/othervm jit.FloatingPoint.gen_math.Loops07.Loops07
* @run driver ExecDriver --java jit.FloatingPoint.gen_math.Loops07.Loops07
*/ */
package jit.FloatingPoint.gen_math.Loops07; package jit.FloatingPoint.gen_math.Loops07;
@ -41,7 +40,7 @@ package jit.FloatingPoint.gen_math.Loops07;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class Loops07 public class Loops07
{ {
public static void main (String args[]) public static void main (String args[])

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.FloatingPoint.gen_math.Matrix_3d.Matrix_3d * @run main/othervm jit.FloatingPoint.gen_math.Matrix_3d.Matrix_3d
* @run driver ExecDriver --java jit.FloatingPoint.gen_math.Matrix_3d.Matrix_3d
*/ */
package jit.FloatingPoint.gen_math.Matrix_3d; package jit.FloatingPoint.gen_math.Matrix_3d;
@ -40,7 +39,7 @@ package jit.FloatingPoint.gen_math.Matrix_3d;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class Matrix_3d public class Matrix_3d
{ {
public static void main (String args[]) public static void main (String args[])

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.FloatingPoint.gen_math.Summ.Summ * @run main/othervm jit.FloatingPoint.gen_math.Summ.Summ
* @run driver ExecDriver --java jit.FloatingPoint.gen_math.Summ.Summ
*/ */
package jit.FloatingPoint.gen_math.Summ; package jit.FloatingPoint.gen_math.Summ;
@ -39,7 +38,7 @@ package jit.FloatingPoint.gen_math.Summ;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class Summ public class Summ
{ {
public static void main (String args[]) public static void main (String args[])
{ {

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.Robert.Robert * @run main/othervm jit.Robert.Robert
* @run driver ExecDriver --java jit.Robert.Robert
*/ */
package jit.Robert; package jit.Robert;
@ -38,7 +37,7 @@ package jit.Robert;
import java.io.*; import java.io.*;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class Robert public class Robert
{ {
Robert() Robert()
throws Exception throws Exception

View file

@ -29,15 +29,14 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.Sleeper.Sleeper * @run main/othervm jit.Sleeper.Sleeper
* @run driver ExecDriver --java jit.Sleeper.Sleeper
*/ */
package jit.Sleeper; package jit.Sleeper;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class Sleeper { public class Sleeper {
public static void main(String args[] ) { public static void main(String args[] ) {
System.out.println ("1"); System.out.println ("1");
try { Thread.sleep(1000); } catch (InterruptedException e) {} try { Thread.sleep(1000); } catch (InterruptedException e) {}

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.bounds.bounds * @run main/othervm jit.bounds.bounds
* @run driver ExecDriver --java jit.bounds.bounds
*/ */
package jit.bounds; package jit.bounds;
@ -40,7 +39,7 @@ package jit.bounds;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class bounds { public class bounds {
public static void main(String[] argv) { public static void main(String[] argv) {
int i; int i;
int a[] = new int[2]; int a[] = new int[2];

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.collapse.collapse * @run main/othervm jit.collapse.collapse
* @run driver ExecDriver --java jit.collapse.collapse
*/ */
package jit.collapse; package jit.collapse;
@ -39,7 +38,7 @@ package jit.collapse;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class collapse { public class collapse {
public static final GoldChecker goldChecker = new GoldChecker( "collapse" ); public static final GoldChecker goldChecker = new GoldChecker( "collapse" );
public static void main( String[] argv ) public static void main( String[] argv )

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.deoptimization.test01.test01 * @run main/othervm jit.deoptimization.test01.test01
* @run driver ExecDriver --java jit.deoptimization.test01.test01
*/ */
package jit.deoptimization.test01; package jit.deoptimization.test01;
@ -44,7 +43,7 @@ import nsk.share.TestFailure;
* run with the -XX:TraceDeoptimization to observ the result. * run with the -XX:TraceDeoptimization to observ the result.
*/ */
class test01 { public class test01 {
public static void main (String[] args) { public static void main (String[] args) {
A obj = new A(); A obj = new A();
for (int index = 0; index < 100; index++) { for (int index = 0; index < 100; index++) {

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.deoptimization.test02.test02 * @run main/othervm jit.deoptimization.test02.test02
* @run driver ExecDriver --java jit.deoptimization.test02.test02
*/ */
package jit.deoptimization.test02; package jit.deoptimization.test02;
@ -44,7 +43,7 @@ import nsk.share.TestFailure;
* run with the -XX:TraceDeoptimization to observ the result. * run with the -XX:TraceDeoptimization to observ the result.
*/ */
class test02 { public class test02 {
public static void main (String[] args) { public static void main (String[] args) {
A obj = new A(); A obj = new A();
for (int index = 0; index < 100; index++) { for (int index = 0; index < 100; index++) {

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.deoptimization.test03.test03 * @run main/othervm jit.deoptimization.test03.test03
* @run driver ExecDriver --java jit.deoptimization.test03.test03
*/ */
package jit.deoptimization.test03; package jit.deoptimization.test03;
@ -44,7 +43,7 @@ import nsk.share.TestFailure;
* run with the -XX:TraceDeoptimization to observ the result. * run with the -XX:TraceDeoptimization to observ the result.
*/ */
class test03 { public class test03 {
public static void main (String[] args) { public static void main (String[] args) {
A obj = new A(); A obj = new A();
for (int index = 0; index < 100; index++) { for (int index = 0; index < 100; index++) {

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.deoptimization.test04.test04 * @run main/othervm jit.deoptimization.test04.test04
* @run driver ExecDriver --java jit.deoptimization.test04.test04
*/ */
package jit.deoptimization.test04; package jit.deoptimization.test04;
@ -41,7 +40,7 @@ import nsk.share.TestFailure;
* *
*/ */
class test04 { public class test04 {
public static void main (String[] args) { public static void main (String[] args) {
A obj = new A(); A obj = new A();

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.deoptimization.test05.test05 * @run main/othervm jit.deoptimization.test05.test05
* @run driver ExecDriver --java jit.deoptimization.test05.test05
*/ */
package jit.deoptimization.test05; package jit.deoptimization.test05;
@ -41,7 +40,7 @@ import nsk.share.TestFailure;
* *
*/ */
class test05 { public class test05 {
public static void main (String[] args) { public static void main (String[] args) {
A obj = new A(); A obj = new A();

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.deoptimization.test06.test06 * @run main/othervm jit.deoptimization.test06.test06
* @run driver ExecDriver --java jit.deoptimization.test06.test06
*/ */
package jit.deoptimization.test06; package jit.deoptimization.test06;
@ -45,7 +44,7 @@ import nsk.share.TestFailure;
* run with the -XX:TraceDeoptimization to observ the result. * run with the -XX:TraceDeoptimization to observ the result.
*/ */
class test06 { public class test06 {
public static void main (String[] args) { public static void main (String[] args) {
A obj = new A(); A obj = new A();
for (int index = 0; index < 1; index++) { for (int index = 0; index < 1; index++) {

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.deoptimization.test07.test07 * @run main/othervm jit.deoptimization.test07.test07
* @run driver ExecDriver --java jit.deoptimization.test07.test07
*/ */
package jit.deoptimization.test07; package jit.deoptimization.test07;
@ -45,7 +44,7 @@ import nsk.share.TestFailure;
* run with the -XX:TraceDeoptimization to observ the result. * run with the -XX:TraceDeoptimization to observ the result.
*/ */
class test07 { public class test07 {
public static void main (String[] args) { public static void main (String[] args) {
A obj = new A(); A obj = new A();
for (int index = 0; index < 1; index++) { for (int index = 0; index < 1; index++) {

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.deoptimization.test08.test08 * @run main/othervm jit.deoptimization.test08.test08
* @run driver ExecDriver --java jit.deoptimization.test08.test08
*/ */
package jit.deoptimization.test08; package jit.deoptimization.test08;
@ -45,7 +44,7 @@ import nsk.share.TestFailure;
* run with the -XX:TraceDeoptimization to observ the result. * run with the -XX:TraceDeoptimization to observ the result.
*/ */
class test08 { public class test08 {
public static void main (String[] args) { public static void main (String[] args) {
A obj = new A(); A obj = new A();
for (int index = 0; index < 1; index++) { for (int index = 0; index < 1; index++) {

View file

@ -41,8 +41,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.escape.LockElision.MatMul.MatMul * @run main/othervm jit.escape.LockElision.MatMul.MatMul -dim 30 -threadCount 10
* @run driver ExecDriver --java jit.escape.LockElision.MatMul.MatMul -dim 30 -threadCount 10
*/ */
package jit.escape.LockElision.MatMul; package jit.escape.LockElision.MatMul;
@ -62,7 +61,7 @@ import vm.share.options.Options;
import jdk.test.lib.Utils; import jdk.test.lib.Utils;
class MatMul { public class MatMul {
@Option(name = "dim", description = "dimension of matrices") @Option(name = "dim", description = "dimension of matrices")
int dim; int dim;

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.exception.exception * @run main/othervm jit.exception.exception
* @run driver ExecDriver --java jit.exception.exception
*/ */
package jit.exception; package jit.exception;
@ -49,7 +48,7 @@ package jit.exception;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class exception { public class exception {
public static void main(String[] args) { public static void main(String[] args) {
int i, j; int i, j;

View file

@ -31,8 +31,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.init.init01.init01 * @run main/othervm jit.init.init01.init01
* @run driver ExecDriver --java jit.init.init01.init01
*/ */
package jit.init.init01; package jit.init.init01;
@ -52,7 +51,7 @@ class InitTest2 {
static InitTest1 oop = new InitTest1(); static InitTest1 oop = new InitTest1();
} }
class init01 { public class init01 {
public static void main (String s[]) { public static void main (String s[]) {

View file

@ -35,15 +35,14 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.init.init02.init02 * @run main/othervm jit.init.init02.init02
* @run driver ExecDriver --java jit.init.init02.init02
*/ */
package jit.init.init02; package jit.init.init02;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class init02 { public class init02 {
public static boolean failed = false; public static boolean failed = false;
public static void main(String args[]) { public static void main(String args[]) {
int i, x; int i, x;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.inline.inline003.inline003 * @run main/othervm jit.inline.inline003.inline003
* @run driver ExecDriver --java jit.inline.inline003.inline003
*/ */
package jit.inline.inline003; package jit.inline.inline003;
@ -48,7 +47,7 @@ class inline003_1 {
final protected static int[] trash = { 10, 11}; final protected static int[] trash = { 10, 11};
} }
class inline003 extends inline003_1 { public class inline003 extends inline003_1 {
public static final GoldChecker goldChecker = new GoldChecker( "inline003" ); public static final GoldChecker goldChecker = new GoldChecker( "inline003" );
final private static int ITERS=4; final private static int ITERS=4;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.inline.inline004.inline004 * @run main/othervm jit.inline.inline004.inline004
* @run driver ExecDriver --java jit.inline.inline004.inline004
*/ */
package jit.inline.inline004; package jit.inline.inline004;
@ -51,7 +50,7 @@ class inline004_1 {
} }
} }
class inline004 extends inline004_1 { public class inline004 extends inline004_1 {
public static final GoldChecker goldChecker = new GoldChecker( "inline004" ); public static final GoldChecker goldChecker = new GoldChecker( "inline004" );
static int pFlag = 0; static int pFlag = 0;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -34,8 +34,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.inline.inline007.inline007 * @run main/othervm jit.inline.inline007.inline007
* @run driver ExecDriver --java jit.inline.inline007.inline007
*/ */
package jit.inline.inline007; package jit.inline.inline007;
@ -158,7 +157,7 @@ class inline007Sub extends inline007Sup {
} }
} }
class inline007 extends inline007_1 { public class inline007 extends inline007_1 {
public static final GoldChecker goldChecker = new GoldChecker( "inline007" ); public static final GoldChecker goldChecker = new GoldChecker( "inline007" );
static int[] myIters = new int[14]; static int[] myIters = new int[14];

View file

@ -30,8 +30,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.misctests.Pi.Pi * @run main/othervm jit.misctests.Pi.Pi
* @run driver ExecDriver --java jit.misctests.Pi.Pi
*/ */
package jit.misctests.Pi; package jit.misctests.Pi;
@ -40,7 +39,7 @@ import java.util.Random;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import jdk.test.lib.Utils; import jdk.test.lib.Utils;
class Pi{ public class Pi{
static double pi; static double pi;
static int imKreis=0, imQuadrat=0, i=0; static int imKreis=0, imQuadrat=0, i=0;

View file

@ -29,15 +29,14 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.misctests.t5.t5 * @run main/othervm jit.misctests.t5.t5
* @run driver ExecDriver --java jit.misctests.t5.t5
*/ */
package jit.misctests.t5; package jit.misctests.t5;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class t5 public class t5
{ {
public static void main (String [] args) public static void main (String [] args)
{ {

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.overflow.overflow * @run main/othervm jit.overflow.overflow
* @run driver ExecDriver --java jit.overflow.overflow
*/ */
package jit.overflow; package jit.overflow;
@ -46,7 +45,7 @@ import java.lang.*;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class overflow { public class overflow {
public static void main(String[] args) { public static void main(String[] args) {
try { try {
recurse(1); recurse(1);

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.series.series * @run main/othervm jit.series.series
* @run driver ExecDriver --java jit.series.series
*/ */
package jit.series; package jit.series;
@ -39,7 +38,7 @@ package jit.series;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class series { public class series {
public static final GoldChecker goldChecker = new GoldChecker( "series" ); public static final GoldChecker goldChecker = new GoldChecker( "series" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t001.t001 * @run main/othervm jit.t.t001.t001
* @run driver ExecDriver --java jit.t.t001.t001
*/ */
package jit.t.t001; package jit.t.t001;
@ -39,7 +38,7 @@ package jit.t.t001;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class t001 public class t001
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t001" ); public static final GoldChecker goldChecker = new GoldChecker( "t001" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t002.t002 * @run main/othervm jit.t.t002.t002
* @run driver ExecDriver --java jit.t.t002.t002
*/ */
package jit.t.t002; package jit.t.t002;
@ -39,7 +38,7 @@ package jit.t.t002;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class t002 public class t002
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t002" ); public static final GoldChecker goldChecker = new GoldChecker( "t002" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t003.t003 * @run main/othervm jit.t.t003.t003
* @run driver ExecDriver --java jit.t.t003.t003
*/ */
package jit.t.t003; package jit.t.t003;
@ -39,7 +38,7 @@ package jit.t.t003;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class t003 public class t003
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t003" ); public static final GoldChecker goldChecker = new GoldChecker( "t003" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t004.t004 * @run main/othervm jit.t.t004.t004
* @run driver ExecDriver --java jit.t.t004.t004
*/ */
package jit.t.t004; package jit.t.t004;
@ -39,7 +38,7 @@ package jit.t.t004;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class t004 public class t004
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t004" ); public static final GoldChecker goldChecker = new GoldChecker( "t004" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t005.t005 * @run main/othervm jit.t.t005.t005
* @run driver ExecDriver --java jit.t.t005.t005
*/ */
package jit.t.t005; package jit.t.t005;
@ -39,7 +38,7 @@ package jit.t.t005;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class t005 public class t005
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t005" ); public static final GoldChecker goldChecker = new GoldChecker( "t005" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t006.t006 * @run main/othervm jit.t.t006.t006
* @run driver ExecDriver --java jit.t.t006.t006
*/ */
package jit.t.t006; package jit.t.t006;
@ -39,7 +38,7 @@ package jit.t.t006;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class t006 public class t006
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t006" ); public static final GoldChecker goldChecker = new GoldChecker( "t006" );

View file

@ -29,15 +29,14 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.t.t007.t007 * @run main/othervm jit.t.t007.t007
* @run driver ExecDriver --java jit.t.t007.t007
*/ */
package jit.t.t007; package jit.t.t007;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class t007 public class t007
{ {
public static void main(String argv[]) public static void main(String argv[])
{ {

View file

@ -29,15 +29,14 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.t.t008.t008 * @run main/othervm jit.t.t008.t008
* @run driver ExecDriver --java jit.t.t008.t008
*/ */
package jit.t.t008; package jit.t.t008;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class t008 public class t008
{ {
public static void main(String argv[]) public static void main(String argv[])
{ {

View file

@ -29,15 +29,14 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.t.t009.t009 * @run main/othervm jit.t.t009.t009
* @run driver ExecDriver --java jit.t.t009.t009
*/ */
package jit.t.t009; package jit.t.t009;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class t009 public class t009
{ {
public static void main(String argv[]) public static void main(String argv[])
{ {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t011.t011 * @run main/othervm jit.t.t011.t011
* @run driver ExecDriver --java jit.t.t011.t011
*/ */
package jit.t.t011; package jit.t.t011;
@ -39,7 +38,7 @@ package jit.t.t011;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class t011 public class t011
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t011" ); public static final GoldChecker goldChecker = new GoldChecker( "t011" );

View file

@ -29,15 +29,14 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.t.t012.t012 * @run main/othervm jit.t.t012.t012
* @run driver ExecDriver --java jit.t.t012.t012
*/ */
package jit.t.t012; package jit.t.t012;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class t012 public class t012
{ {
public static void main(String argv[]) public static void main(String argv[])
{ {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t013.t013 * @run main/othervm jit.t.t013.t013
* @run driver ExecDriver --java jit.t.t013.t013
*/ */
package jit.t.t013; package jit.t.t013;
@ -44,7 +43,7 @@ class Globals {
static public int MaxDisks = 64; // this will do! static public int MaxDisks = 64; // this will do!
} }
class t013 { public class t013 {
public static final GoldChecker goldChecker = new GoldChecker( "t013" ); public static final GoldChecker goldChecker = new GoldChecker( "t013" );

View file

@ -29,15 +29,14 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.t.t014.t014 * @run main/othervm jit.t.t014.t014
* @run driver ExecDriver --java jit.t.t014.t014
*/ */
package jit.t.t014; package jit.t.t014;
import nsk.share.TestFailure; import nsk.share.TestFailure;
class t014 public class t014
{ {
void foo() void foo()
{ {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t015.t015 * @run main/othervm jit.t.t015.t015
* @run driver ExecDriver --java jit.t.t015.t015
*/ */
package jit.t.t015; package jit.t.t015;
@ -39,7 +38,7 @@ package jit.t.t015;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class t015 public class t015
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t015" ); public static final GoldChecker goldChecker = new GoldChecker( "t015" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t016.t016 * @run main/othervm jit.t.t016.t016
* @run driver ExecDriver --java jit.t.t016.t016
*/ */
package jit.t.t016; package jit.t.t016;
@ -39,7 +38,7 @@ package jit.t.t016;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class t016 public class t016
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t016" ); public static final GoldChecker goldChecker = new GoldChecker( "t016" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t017.t017 * @run main/othervm jit.t.t017.t017
* @run driver ExecDriver --java jit.t.t017.t017
*/ */
package jit.t.t017; package jit.t.t017;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// opc_arraylength // opc_arraylength
class t017 public class t017
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t017" ); public static final GoldChecker goldChecker = new GoldChecker( "t017" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t018.t018 * @run main/othervm jit.t.t018.t018
* @run driver ExecDriver --java jit.t.t018.t018
*/ */
package jit.t.t018; package jit.t.t018;
@ -51,7 +50,7 @@ class jj extends Throwable
} }
} }
class t018 public class t018
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t018" ); public static final GoldChecker goldChecker = new GoldChecker( "t018" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t019.t019 * @run main/othervm jit.t.t019.t019
* @run driver ExecDriver --java jit.t.t019.t019
*/ */
package jit.t.t019; package jit.t.t019;
@ -43,7 +42,7 @@ import nsk.share.GoldChecker;
// opc_caload, opc_castore, // opc_caload, opc_castore,
// opc_saload, opc_sastore // opc_saload, opc_sastore
class t019 public class t019
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t019" ); public static final GoldChecker goldChecker = new GoldChecker( "t019" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t020.t020 * @run main/othervm jit.t.t020.t020
* @run driver ExecDriver --java jit.t.t020.t020
*/ */
package jit.t.t020; package jit.t.t020;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// opc_checkcast, opc_instanceof, opc_ifnull, opc_ifnonnull // opc_checkcast, opc_instanceof, opc_ifnull, opc_ifnonnull
class t020 public class t020
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t020" ); public static final GoldChecker goldChecker = new GoldChecker( "t020" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t021.t021 * @run main/othervm jit.t.t021.t021
* @run driver ExecDriver --java jit.t.t021.t021
*/ */
package jit.t.t021; package jit.t.t021;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// opc_fconst_0, opc_fconst_1, opc_fconst_2, opc_fload_<n>, opc_fload, // opc_fconst_0, opc_fconst_1, opc_fconst_2, opc_fload_<n>, opc_fload,
// opc_fadd, opc_fsub, opc_fmul, opc_fdiv // opc_fadd, opc_fsub, opc_fmul, opc_fdiv
class t021 public class t021
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t021" ); public static final GoldChecker goldChecker = new GoldChecker( "t021" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t022.t022 * @run main/othervm jit.t.t022.t022
* @run driver ExecDriver --java jit.t.t022.t022
*/ */
package jit.t.t022; package jit.t.t022;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// The double-precision version of t021.java. // The double-precision version of t021.java.
class t022 public class t022
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t022" ); public static final GoldChecker goldChecker = new GoldChecker( "t022" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t023.t023 * @run main/othervm jit.t.t023.t023
* @run driver ExecDriver --java jit.t.t023.t023
*/ */
package jit.t.t023; package jit.t.t023;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// opc_d2f, opc_d2i, opc_d2l // opc_d2f, opc_d2i, opc_d2l
class t023 public class t023
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t023" ); public static final GoldChecker goldChecker = new GoldChecker( "t023" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t024.t024 * @run main/othervm jit.t.t024.t024
* @run driver ExecDriver --java jit.t.t024.t024
*/ */
package jit.t.t024; package jit.t.t024;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// opc_f2d, opc_f2i, opc_f2l // opc_f2d, opc_f2i, opc_f2l
class t024 public class t024
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t024" ); public static final GoldChecker goldChecker = new GoldChecker( "t024" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t025.t025 * @run main/othervm jit.t.t025.t025
* @run driver ExecDriver --java jit.t.t025.t025
*/ */
package jit.t.t025; package jit.t.t025;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// opc_daload, opc_dastore, opc_faload, opc_fastore // opc_daload, opc_dastore, opc_faload, opc_fastore
class t025 public class t025
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t025" ); public static final GoldChecker goldChecker = new GoldChecker( "t025" );

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.t.t026.t026 * @run main/othervm jit.t.t026.t026
* @run driver ExecDriver --java jit.t.t026.t026
*/ */
package jit.t.t026; package jit.t.t026;
@ -39,7 +38,7 @@ import nsk.share.TestFailure;
// opc_areturn // opc_areturn
class t026 public class t026
{ {
t026 foo() t026 foo()
{ {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t027.t027 * @run main/othervm jit.t.t027.t027
* @run driver ExecDriver --java jit.t.t027.t027
*/ */
package jit.t.t027; package jit.t.t027;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// opc_dcmpg, opc_dcmpl // opc_dcmpg, opc_dcmpl
class t027 public class t027
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t027" ); public static final GoldChecker goldChecker = new GoldChecker( "t027" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t028.t028 * @run main/othervm jit.t.t028.t028
* @run driver ExecDriver --java jit.t.t028.t028
*/ */
package jit.t.t028; package jit.t.t028;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// opc_dneg, opc_fneg // opc_dneg, opc_fneg
class t028 public class t028
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t028" ); public static final GoldChecker goldChecker = new GoldChecker( "t028" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t029.t029 * @run main/othervm jit.t.t029.t029
* @run driver ExecDriver --java jit.t.t029.t029
*/ */
package jit.t.t029; package jit.t.t029;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// opc_drem, opc_frem, opc_dreturn opc_freturn // opc_drem, opc_frem, opc_dreturn opc_freturn
class t029 public class t029
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t029" ); public static final GoldChecker goldChecker = new GoldChecker( "t029" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t030.t030 * @run main/othervm jit.t.t030.t030
* @run driver ExecDriver --java jit.t.t030.t030
*/ */
package jit.t.t030; package jit.t.t030;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// opc_dup2, opc_dup2_x1, opc_dup2_x2 // opc_dup2, opc_dup2_x1, opc_dup2_x2
class t030 public class t030
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t030" ); public static final GoldChecker goldChecker = new GoldChecker( "t030" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t031.t031 * @run main/othervm jit.t.t031.t031
* @run driver ExecDriver --java jit.t.t031.t031
*/ */
package jit.t.t031; package jit.t.t031;
@ -42,7 +41,7 @@ import nsk.share.GoldChecker;
// opc_fcmpg, opc_fcmpl // opc_fcmpg, opc_fcmpl
class t031 public class t031
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t031" ); public static final GoldChecker goldChecker = new GoldChecker( "t031" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t032.t032 * @run main/othervm jit.t.t032.t032
* @run driver ExecDriver --java jit.t.t032.t032
*/ */
package jit.t.t032; package jit.t.t032;
@ -42,7 +41,7 @@ import nsk.share.GoldChecker;
// opc_i2d, opc_i2f, opc_i2l // opc_i2d, opc_i2f, opc_i2l
// opc_l2d, opc_l2f, opc_l2i // opc_l2d, opc_l2f, opc_l2i
class t032 public class t032
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t032" ); public static final GoldChecker goldChecker = new GoldChecker( "t032" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t033.t033 * @run main/othervm jit.t.t033.t033
* @run driver ExecDriver --java jit.t.t033.t033
*/ */
package jit.t.t033; package jit.t.t033;
@ -42,7 +41,7 @@ import nsk.share.GoldChecker;
// opc_iand, opc_ior, opc_ixor // opc_iand, opc_ior, opc_ixor
// opc_land, opc_lor, opc_lxor // opc_land, opc_lor, opc_lxor
class t033 public class t033
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t033" ); public static final GoldChecker goldChecker = new GoldChecker( "t033" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t034.t034 * @run main/othervm jit.t.t034.t034
* @run driver ExecDriver --java jit.t.t034.t034
*/ */
package jit.t.t034; package jit.t.t034;
@ -50,7 +49,7 @@ import nsk.share.GoldChecker;
// opc_lrem // opc_lrem
// opc_lsub // opc_lsub
class t034 public class t034
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t034" ); public static final GoldChecker goldChecker = new GoldChecker( "t034" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t035.t035 * @run main/othervm jit.t.t035.t035
* @run driver ExecDriver --java jit.t.t035.t035
*/ */
package jit.t.t035; package jit.t.t035;
@ -50,7 +49,7 @@ import nsk.share.GoldChecker;
// opc_lrem // opc_lrem
// opc_lsub // opc_lsub
class t035 public class t035
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t035" ); public static final GoldChecker goldChecker = new GoldChecker( "t035" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t036.t036 * @run main/othervm jit.t.t036.t036
* @run driver ExecDriver --java jit.t.t036.t036
*/ */
package jit.t.t036; package jit.t.t036;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// opc_int2byte, opc_int2char, opc_int2short // opc_int2byte, opc_int2char, opc_int2short
class t036 public class t036
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t036" ); public static final GoldChecker goldChecker = new GoldChecker( "t036" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t037.t037 * @run main/othervm jit.t.t037.t037
* @run driver ExecDriver --java jit.t.t037.t037
*/ */
package jit.t.t037; package jit.t.t037;
@ -46,7 +45,7 @@ interface foo
void doit(); void doit();
} }
class t037 implements foo public class t037 implements foo
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t037" ); public static final GoldChecker goldChecker = new GoldChecker( "t037" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t038.t038 * @run main/othervm jit.t.t038.t038
* @run driver ExecDriver --java jit.t.t038.t038
*/ */
package jit.t.t038; package jit.t.t038;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// opc_laload, opc_lastore, opc_lconst_0 // opc_laload, opc_lastore, opc_lconst_0
class t038 public class t038
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t038" ); public static final GoldChecker goldChecker = new GoldChecker( "t038" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t039.t039 * @run main/othervm jit.t.t039.t039
* @run driver ExecDriver --java jit.t.t039.t039
*/ */
package jit.t.t039; package jit.t.t039;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// opc_lreturn, opc_monitorenter, opc_monitorexit // opc_lreturn, opc_monitorenter, opc_monitorexit
class t039 public class t039
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t039" ); public static final GoldChecker goldChecker = new GoldChecker( "t039" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t040.t040 * @run main/othervm jit.t.t040.t040
* @run driver ExecDriver --java jit.t.t040.t040
*/ */
package jit.t.t040; package jit.t.t040;
@ -42,7 +41,7 @@ import nsk.share.GoldChecker;
// opc_multianewarray // opc_multianewarray
class t040 public class t040
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t040" ); public static final GoldChecker goldChecker = new GoldChecker( "t040" );

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.t.t041.t041 * @run main/othervm jit.t.t041.t041
* @run driver ExecDriver --java jit.t.t041.t041
*/ */
package jit.t.t041; package jit.t.t041;
@ -39,7 +38,7 @@ import nsk.share.TestFailure;
// opc_swap // opc_swap
class t041 public class t041
{ {
public static void main(String argv[]) public static void main(String argv[])
{ {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t042.t042 * @run main/othervm jit.t.t042.t042
* @run driver ExecDriver --java jit.t.t042.t042
*/ */
package jit.t.t042; package jit.t.t042;
@ -42,7 +41,7 @@ import nsk.share.GoldChecker;
// The special little twiddle that occurs when you invoke a method // The special little twiddle that occurs when you invoke a method
// of an array. // of an array.
class t042 public class t042
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t042" ); public static final GoldChecker goldChecker = new GoldChecker( "t042" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t043.t043 * @run main/othervm jit.t.t043.t043
* @run driver ExecDriver --java jit.t.t043.t043
*/ */
package jit.t.t043; package jit.t.t043;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// Register jams and spills // Register jams and spills
class t043 public class t043
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t043" ); public static final GoldChecker goldChecker = new GoldChecker( "t043" );

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.t.t044.t044 * @run main/othervm jit.t.t044.t044
* @run driver ExecDriver --java jit.t.t044.t044
*/ */
package jit.t.t044; package jit.t.t044;
@ -39,7 +38,7 @@ import nsk.share.TestFailure;
// Call interferes with one lazy load but not the other. // Call interferes with one lazy load but not the other.
class t044 public class t044
{ {
static double x = 409.0; static double x = 409.0;

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.t.t045.t045 * @run main/othervm jit.t.t045.t045
* @run driver ExecDriver --java jit.t.t045.t045
*/ */
package jit.t.t045; package jit.t.t045;
@ -39,7 +38,7 @@ import nsk.share.TestFailure;
// Putfield interferes with one lazy load but not the other. // Putfield interferes with one lazy load but not the other.
class t045 public class t045
{ {
static double x = 409.0; static double x = 409.0;
static double y; static double y;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t046.t046 * @run main/othervm jit.t.t046.t046
* @run driver ExecDriver --java jit.t.t046.t046
*/ */
package jit.t.t046; package jit.t.t046;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// Register jams and spills // Register jams and spills
class t046 public class t046
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t046" ); public static final GoldChecker goldChecker = new GoldChecker( "t046" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t047.t047 * @run main/othervm jit.t.t047.t047
* @run driver ExecDriver --java jit.t.t047.t047
*/ */
package jit.t.t047; package jit.t.t047;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// Register jams and spills // Register jams and spills
class t047 public class t047
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t047" ); public static final GoldChecker goldChecker = new GoldChecker( "t047" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t048.t048 * @run main/othervm jit.t.t048.t048
* @run driver ExecDriver --java jit.t.t048.t048
*/ */
package jit.t.t048; package jit.t.t048;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// Register jams and spills // Register jams and spills
class t048 public class t048
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t048" ); public static final GoldChecker goldChecker = new GoldChecker( "t048" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t049.t049 * @run main/othervm jit.t.t049.t049
* @run driver ExecDriver --java jit.t.t049.t049
*/ */
package jit.t.t049; package jit.t.t049;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// Register jams and spills // Register jams and spills
class t049 public class t049
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t049" ); public static final GoldChecker goldChecker = new GoldChecker( "t049" );

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.t.t050.t050 * @run main/othervm jit.t.t050.t050
* @run driver ExecDriver --java jit.t.t050.t050
*/ */
package jit.t.t050; package jit.t.t050;
@ -39,7 +38,7 @@ import nsk.share.TestFailure;
// Pending local load clobbered by local store. // Pending local load clobbered by local store.
class t050 public class t050
{ {
public static void main(String argv[]) public static void main(String argv[])
{ {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t051.t051 * @run main/othervm jit.t.t051.t051
* @run driver ExecDriver --java jit.t.t051.t051
*/ */
package jit.t.t051; package jit.t.t051;
@ -39,7 +38,7 @@ package jit.t.t051;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class t051 public class t051
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t051" ); public static final GoldChecker goldChecker = new GoldChecker( "t051" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t052.t052 * @run main/othervm jit.t.t052.t052
* @run driver ExecDriver --java jit.t.t052.t052
*/ */
package jit.t.t052; package jit.t.t052;
@ -43,7 +42,7 @@ import nsk.share.GoldChecker;
// its way in among the tests, it failed because of a failure correctly // its way in among the tests, it failed because of a failure correctly
// to reverse the sense of an integer branch when swapping the operands. // to reverse the sense of an integer branch when swapping the operands.
class t052 { public class t052 {
public static final GoldChecker goldChecker = new GoldChecker( "t052" ); public static final GoldChecker goldChecker = new GoldChecker( "t052" );
static double aa[][],dd[][],x[][],y[][], static double aa[][],dd[][],x[][],y[][],

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t053.t053 * @run main/othervm jit.t.t053.t053
* @run driver ExecDriver --java jit.t.t053.t053
*/ */
package jit.t.t053; package jit.t.t053;
@ -43,7 +42,7 @@ import nsk.share.GoldChecker;
// Tomcatv in java, with prints active // Tomcatv in java, with prints active
// //
class t053 { public class t053 {
public static final GoldChecker goldChecker = new GoldChecker( "t053" ); public static final GoldChecker goldChecker = new GoldChecker( "t053" );
static double aa[][],dd[][],x[][],y[][], static double aa[][],dd[][],x[][],y[][],

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t054.t054 * @run main/othervm jit.t.t054.t054
* @run driver ExecDriver --java jit.t.t054.t054
*/ */
package jit.t.t054; package jit.t.t054;
@ -43,7 +42,7 @@ import nsk.share.GoldChecker;
// A more comprehensive test for the tomcatv bug, that being failure // A more comprehensive test for the tomcatv bug, that being failure
// correctly to reverse the sense of a jump. // correctly to reverse the sense of a jump.
class t054 public class t054
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t054" ); public static final GoldChecker goldChecker = new GoldChecker( "t054" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t055.t055 * @run main/othervm jit.t.t055.t055
* @run driver ExecDriver --java jit.t.t055.t055
*/ */
package jit.t.t055; package jit.t.t055;
@ -39,7 +38,7 @@ package jit.t.t055;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class t055 public class t055
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t055" ); public static final GoldChecker goldChecker = new GoldChecker( "t055" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t056.t056 * @run main/othervm jit.t.t056.t056
* @run driver ExecDriver --java jit.t.t056.t056
*/ */
package jit.t.t056; package jit.t.t056;
@ -39,7 +38,7 @@ package jit.t.t056;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class t056 public class t056
{ {
// Routine nest in which exception is thrown and caught in // Routine nest in which exception is thrown and caught in
// the fourth routine. // the fourth routine.

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t057.t057 * @run main/othervm jit.t.t057.t057
* @run driver ExecDriver --java jit.t.t057.t057
*/ */
package jit.t.t057; package jit.t.t057;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// Just like t056 except here the exception is not explicitly thrown. // Just like t056 except here the exception is not explicitly thrown.
class t057 public class t057
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t057" ); public static final GoldChecker goldChecker = new GoldChecker( "t057" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t058.t058 * @run main/othervm jit.t.t058.t058
* @run driver ExecDriver --java jit.t.t058.t058
*/ */
package jit.t.t058; package jit.t.t058;
@ -83,7 +82,7 @@ class k implements l
} }
} }
class t058 public class t058
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t058" ); public static final GoldChecker goldChecker = new GoldChecker( "t058" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t059.t059 * @run main/othervm jit.t.t059.t059
* @run driver ExecDriver --java jit.t.t059.t059
*/ */
package jit.t.t059; package jit.t.t059;
@ -39,7 +38,7 @@ package jit.t.t059;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class t059 public class t059
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t059" ); public static final GoldChecker goldChecker = new GoldChecker( "t059" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t060.t060 * @run main/othervm jit.t.t060.t060
* @run driver ExecDriver --java jit.t.t060.t060
*/ */
package jit.t.t060; package jit.t.t060;
@ -39,7 +38,7 @@ package jit.t.t060;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class t060 public class t060
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t060" ); public static final GoldChecker goldChecker = new GoldChecker( "t060" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t061.t061 * @run main/othervm jit.t.t061.t061
* @run driver ExecDriver --java jit.t.t061.t061
*/ */
package jit.t.t061; package jit.t.t061;
@ -41,7 +40,7 @@ import nsk.share.GoldChecker;
// Long and double array loads with variable and constant subscripts. // Long and double array loads with variable and constant subscripts.
class t061 public class t061
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t061" ); public static final GoldChecker goldChecker = new GoldChecker( "t061" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t062.t062 * @run main/othervm jit.t.t062.t062
* @run driver ExecDriver --java jit.t.t062.t062
*/ */
package jit.t.t062; package jit.t.t062;
@ -47,7 +46,7 @@ interface l
void voodoo(); void voodoo();
} }
class t062 implements l public class t062 implements l
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t062" ); public static final GoldChecker goldChecker = new GoldChecker( "t062" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t063.t063 * @run main/othervm jit.t.t063.t063
* @run driver ExecDriver --java jit.t.t063.t063
*/ */
package jit.t.t063; package jit.t.t063;
@ -39,7 +38,7 @@ package jit.t.t063;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class t063 public class t063
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t063" ); public static final GoldChecker goldChecker = new GoldChecker( "t063" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t064.t064 * @run main/othervm jit.t.t064.t064
* @run driver ExecDriver --java jit.t.t064.t064
*/ */
package jit.t.t064; package jit.t.t064;
@ -64,7 +63,7 @@ class l
} }
} }
class t064 public class t064
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t064" ); public static final GoldChecker goldChecker = new GoldChecker( "t064" );

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t065.t065 * @run main/othervm jit.t.t065.t065
* @run driver ExecDriver --java jit.t.t065.t065
*/ */
package jit.t.t065; package jit.t.t065;
@ -64,7 +63,7 @@ class l
} }
} }
class t065 public class t065
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t065" ); public static final GoldChecker goldChecker = new GoldChecker( "t065" );

View file

@ -29,8 +29,7 @@
* *
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @build jit.t.t066.t066 * @run main/othervm jit.t.t066.t066
* @run driver ExecDriver --java jit.t.t066.t066
*/ */
package jit.t.t066; package jit.t.t066;
@ -41,7 +40,7 @@ import nsk.share.TestFailure;
// offsets on the stores of the two halves of the double // offsets on the stores of the two halves of the double
// constant. // constant.
class t066 public class t066
{ {
public static void main(String argv[]) public static void main(String argv[])
{ {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,8 +30,7 @@
* @library /vmTestbase * @library /vmTestbase
* /test/lib * /test/lib
* @run driver jdk.test.lib.FileInstaller . . * @run driver jdk.test.lib.FileInstaller . .
* @build jit.t.t067.t067 * @run main/othervm jit.t.t067.t067
* @run driver ExecDriver --java jit.t.t067.t067
*/ */
package jit.t.t067; package jit.t.t067;
@ -39,7 +38,7 @@ package jit.t.t067;
import nsk.share.TestFailure; import nsk.share.TestFailure;
import nsk.share.GoldChecker; import nsk.share.GoldChecker;
class t067 public class t067
{ {
public static final GoldChecker goldChecker = new GoldChecker( "t067" ); public static final GoldChecker goldChecker = new GoldChecker( "t067" );

Some files were not shown because too many files have changed in this diff Show more