8173038: [TESTBUG] compiler/loopopts/UseCountedLoopSafepointsTest.java fails with TESTBUG: Not server mode
authorjcm
Thu, 19 Jan 2017 21:52:51 -0800
changeset 43470 39d4bc6c9989
parent 43469 2048c42e2c88
child 43471 bfb383279a16
8173038: [TESTBUG] compiler/loopopts/UseCountedLoopSafepointsTest.java fails with TESTBUG: Not server mode Summary: remove wrong extra check that got added as part of JDK-8166002 emulated client on win32. Reviewed-by: kvn
hotspot/test/compiler/loopopts/UseCountedLoopSafepointsTest.java
--- a/hotspot/test/compiler/loopopts/UseCountedLoopSafepointsTest.java	Thu Jan 19 18:16:20 2017 -0800
+++ b/hotspot/test/compiler/loopopts/UseCountedLoopSafepointsTest.java	Thu Jan 19 21:52:51 2017 -0800
@@ -53,9 +53,6 @@
 public class UseCountedLoopSafepointsTest {
 
     public static void main (String args[]) {
-        if (!Platform.isServer() || Platform.isEmulatedClient()) {
-            throw new Error("TESTBUG: Not server mode");
-        }
         check(true); // check ideal graph with UseCountedLoopSafepoint enabled
         check(false); // ... and disabled
     }