< prev index next >

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/HotSpotStackIntrospectionTest.java

Print this page
rev 52509 : [mq]: graal

@@ -24,12 +24,10 @@
 
 package org.graalvm.compiler.hotspot.test;
 
 import java.util.function.Function;
 
-import org.graalvm.compiler.test.GraalTest;
-import org.junit.Assume;
 import org.junit.Rule;
 import org.junit.Test;
 import org.junit.rules.TestRule;
 
 import jdk.vm.ci.code.InstalledCode;

@@ -78,19 +76,15 @@
         return a;
     }
 
     @Test
     public void run() throws InvalidInstalledCodeException {
-        // The JDK9 bits are currently broken
-        Assume.assumeTrue(GraalTest.Java8OrEarlier);
         test("testSnippet");
     }
 
     @Test
     public void runSynchronized() throws InvalidInstalledCodeException {
-        // The JDK9 bits are currently broken
-        Assume.assumeTrue(GraalTest.Java8OrEarlier);
         test("testSynchronizedSnippet");
     }
 
     private void test(String name) throws InvalidInstalledCodeException {
         ResolvedJavaMethod method = getMetaAccess().lookupJavaMethod(getMethod(name));
< prev index next >