# HG changeset patch # User iignatyev # Date 1402433603 0 # Node ID b9dbad77425e863cc10d5444c85674b25746e3c1 # Parent 8c3d87f2c2d0e2ac8608ae500292afc126c5cad4# Parent 002a4742a989310a2b9da78d6e5823a673a846c5 Merge diff -r 8c3d87f2c2d0 -r b9dbad77425e hotspot/test/testlibrary_tests/whitebox/vm_flags/UintxTest.java --- a/hotspot/test/testlibrary_tests/whitebox/vm_flags/UintxTest.java Tue Jun 10 12:57:50 2014 -0700 +++ b/hotspot/test/testlibrary_tests/whitebox/vm_flags/UintxTest.java Tue Jun 10 20:53:23 2014 +0000 @@ -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; diff -r 8c3d87f2c2d0 -r b9dbad77425e hotspot/test/testlibrary_tests/whitebox/vm_flags/VmFlagTest.java --- a/hotspot/test/testlibrary_tests/whitebox/vm_flags/VmFlagTest.java Tue Jun 10 12:57:50 2014 -0700 +++ b/hotspot/test/testlibrary_tests/whitebox/vm_flags/VmFlagTest.java Tue Jun 10 20:53:23 2014 +0000 @@ -55,9 +55,7 @@ } private T getValue() { - T t = get.apply(flagName); - System.out.println("T = " + t); - return t; + return get.apply(flagName); } protected static void runTest(String existentFlag, T[] tests,