File tree 1 file changed +3
-6
lines changed
test/hotspot/jtreg/runtime/memory
1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 25
25
* @test
26
26
* @summary Test that touching noaccess area in class ReservedHeapSpace results in SIGSEGV/ACCESS_VIOLATION
27
27
* @library /test/lib
28
+ * @requires vm.bits == 64
28
29
* @modules java.base/jdk.internal.misc
29
30
* java.management
30
31
* @build sun.hotspot.WhiteBox
36
37
import jdk .test .lib .process .ProcessTools ;
37
38
import jdk .test .lib .process .OutputAnalyzer ;
38
39
import sun .hotspot .WhiteBox ;
40
+ import jtreg .SkippedException ;
39
41
40
42
public class ReadFromNoaccessArea {
41
43
42
44
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
- }
47
45
48
46
ProcessBuilder pb = ProcessTools .createJavaProcessBuilder (
49
47
"-Xbootclasspath/a:." ,
@@ -62,8 +60,7 @@ public static void main(String args[]) throws Exception {
62
60
System .out .println (output .getStderr ());
63
61
System .out .println ("***************************************************************" );
64
62
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" );
67
64
}
68
65
if (Platform .isWindows ()) {
69
66
output .shouldContain ("EXCEPTION_ACCESS_VIOLATION" );
You can’t perform that action at this time.
0 commit comments