test/testlibrary_tests/whitebox/vm_flags/UintxTest.java

changeset 8441
cf1faa9100dd
parent 6963
0c48231c5c84
equal deleted inserted replaced
8440:fde446cb8e19 8441:cf1faa9100dd
32 * @author igor.ignatyev@oracle.com 32 * @author igor.ignatyev@oracle.com
33 */ 33 */
34 import com.oracle.java.testlibrary.Platform; 34 import com.oracle.java.testlibrary.Platform;
35 35
36 public class UintxTest { 36 public class UintxTest {
37 private static final String FLAG_NAME = "TypeProfileLevel"; 37 private static final String FLAG_NAME = "VerifyGCStartAt";
38 private static final Long[] TESTS = {0L, 100L, (long) Integer.MAX_VALUE, 38 private static final Long[] TESTS = {0L, 100L, (long) Integer.MAX_VALUE,
39 (1L << 32L) - 1L, 1L << 32L}; 39 (1L << 32L) - 1L, 1L << 32L};
40 private static final Long[] EXPECTED_64 = TESTS; 40 private static final Long[] EXPECTED_64 = TESTS;
41 private static final Long[] EXPECTED_32 = {0L, 100L, 41 private static final Long[] EXPECTED_32 = {0L, 100L,
42 (long) Integer.MAX_VALUE, (1L << 32L) - 1L, 0L}; 42 (long) Integer.MAX_VALUE, (1L << 32L) - 1L, 0L};

mercurial