# HG changeset patch # User jcm # Date 1484891571 28800 # Node ID 39d4bc6c9989aaebc9267b0041458a4aa9f7b17d # Parent 2048c42e2c8840d8b83005e31c3068b2e0b9a2fa 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 diff -r 2048c42e2c88 -r 39d4bc6c9989 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 }