changeset 7942:cf1faa9100dd jdk8u112-b01

8044575: testlibrary_tests/whitebox/vm_flags/UintxTest.java failed: assert(!res || TypeEntriesAtCall::arguments_profiling_enabled()) failed: no profiling of arguments Reviewed-by: kvn, jmasa
author shshahma
date Tue, 10 Jun 2014 23:18:25 +0400
parents fde446cb8e19
children 4529ee76d3f9 3e2abbf1320d
files test/testlibrary_tests/whitebox/vm_flags/UintxTest.java test/testlibrary_tests/whitebox/vm_flags/VmFlagTest.java
diffstat 2 files changed, 2 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/test/testlibrary_tests/whitebox/vm_flags/UintxTest.java	Fri Jun 10 15:34:32 2016 +0530
+++ b/test/testlibrary_tests/whitebox/vm_flags/UintxTest.java	Tue Jun 10 23:18:25 2014 +0400
@@ -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;
--- a/test/testlibrary_tests/whitebox/vm_flags/VmFlagTest.java	Fri Jun 10 15:34:32 2016 +0530
+++ b/test/testlibrary_tests/whitebox/vm_flags/VmFlagTest.java	Tue Jun 10 23:18:25 2014 +0400
@@ -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 <T> void runTest(String existentFlag, T[] tests,