We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65e43fb commit 50388fbCopy full SHA for 50388fb
test/com/sun/jna/VMCrashProtectionTest.java
@@ -24,6 +24,7 @@
24
package com.sun.jna;
25
26
import junit.framework.TestCase;
27
+import org.junit.Assume;
28
29
public class VMCrashProtectionTest extends TestCase {
30
@@ -37,6 +38,11 @@ protected void tearDown() {
37
38
}
39
40
public void testAccessViolation() {
41
+ if(Platform.ARCH.equals("s390x")) {
42
+ System.out.println("Skipping VMCrashProtectionTest on s390x");
43
+ return;
44
+ }
45
+
46
if (!Native.isProtected())
47
return;
48
0 commit comments