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
--- 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
}