Skip to content

Commit a9d14e1

Browse files
committedApr 29, 2020
8243944: use SkippedException and @requires in runtime/memory/ReadFromNoaccessArea.java test
Reviewed-by: minqi
1 parent 6ff66db commit a9d14e1

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed
 

‎test/hotspot/jtreg/runtime/memory/ReadFromNoaccessArea.java

+3-6
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
* @test
2626
* @summary Test that touching noaccess area in class ReservedHeapSpace results in SIGSEGV/ACCESS_VIOLATION
2727
* @library /test/lib
28+
* @requires vm.bits == 64
2829
* @modules java.base/jdk.internal.misc
2930
* java.management
3031
* @build sun.hotspot.WhiteBox
@@ -36,14 +37,11 @@
3637
import jdk.test.lib.process.ProcessTools;
3738
import jdk.test.lib.process.OutputAnalyzer;
3839
import sun.hotspot.WhiteBox;
40+
import jtreg.SkippedException;
3941

4042
public class ReadFromNoaccessArea {
4143

4244
public static void main(String args[]) throws Exception {
43-
if (!Platform.is64bit()) {
44-
System.out.println("ReadFromNoaccessArea tests is useful only on 64bit architecture. Passing silently.");
45-
return;
46-
}
4745

4846
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
4947
"-Xbootclasspath/a:.",
@@ -62,8 +60,7 @@ public static void main(String args[]) throws Exception {
6260
System.out.println(output.getStderr());
6361
System.out.println("***************************************************************");
6462
if (output.getStdout() != null && output.getStdout().contains("WB_ReadFromNoaccessArea method is useless")) {
65-
// Test conditions broken. There is no protected page in ReservedHeapSpace in these circumstances. Silently passing test.
66-
return;
63+
throw new SkippedException("There is no protected page in ReservedHeapSpace in these circumstance");
6764
}
6865
if (Platform.isWindows()) {
6966
output.shouldContain("EXCEPTION_ACCESS_VIOLATION");

0 commit comments

Comments
 (0)
Please sign in to comment.