This commit is contained in:
Igor Ignatyev 2014-06-10 20:53:23 +00:00
commit 01645fc449
2 changed files with 2 additions and 4 deletions

View File

@ -34,7 +34,7 @@
import com.oracle.java.testlibrary.Platform;
public class UintxTest {
private static final String FLAG_NAME = "TypeProfileLevel";
private static final String FLAG_NAME = "VerifyGCStartAt";
private static final Long[] TESTS = {0L, 100L, (long) Integer.MAX_VALUE,
(1L << 32L) - 1L, 1L << 32L};
private static final Long[] EXPECTED_64 = TESTS;

View File

@ -55,9 +55,7 @@ public final class VmFlagTest<T> {
}
private T getValue() {
T t = get.apply(flagName);
System.out.println("T = " + t);
return t;
return get.apply(flagName);
}
protected static <T> void runTest(String existentFlag, T[] tests,