changeset 57175:c59b44adf996 lworld

[lworld] Disable C2 IR verification if C1 is tested
author thartmann
date Mon, 30 Sep 2019 11:21:51 +0200
parents 96e706c77f92
children 9acaba70cb58
files test/hotspot/jtreg/compiler/valhalla/valuetypes/ValueTypeTest.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/test/hotspot/jtreg/compiler/valhalla/valuetypes/ValueTypeTest.java	Mon Sep 30 11:03:43 2019 +0200
+++ b/test/hotspot/jtreg/compiler/valhalla/valuetypes/ValueTypeTest.java	Mon Sep 30 11:21:51 2019 +0200
@@ -129,7 +129,7 @@
     private static final boolean PRINT_GRAPH = true;
     protected static final boolean VERBOSE = Boolean.parseBoolean(System.getProperty("Verbose", "false"));
     private static final boolean PRINT_TIMES = Boolean.parseBoolean(System.getProperty("PrintTimes", "false"));
-    private static       boolean VERIFY_IR = Boolean.parseBoolean(System.getProperty("VerifyIR", "true")) && !XCOMP;
+    private static       boolean VERIFY_IR = Boolean.parseBoolean(System.getProperty("VerifyIR", "true")) && !XCOMP && !TEST_C1;
     private static final boolean VERIFY_VM = Boolean.parseBoolean(System.getProperty("VerifyVM", "false"));
     private static final String SCENARIOS = System.getProperty("Scenarios", "");
     private static final String TESTLIST = System.getProperty("Testlist", "");