Skip to content

Commit c071cd6

Browse files
authored
Merge pull request #6430 from bstansberry/ignore_WFCORE-7269
Ignore ProvisioningConsistencyTestCase on s390x
2 parents b32a449 + 94a3016 commit c071cd6

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

testsuite/manualmode/src/test/java/org/jboss/as/test/manualmode/provisioning/ProvisioningConsistencyTestCase.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
import java.util.concurrent.atomic.AtomicReference;
2626

2727
import org.jboss.logging.Logger;
28+
import org.junit.AssumptionViolatedException;
29+
import org.junit.BeforeClass;
2830
import org.junit.Test;
2931

3032
/**
@@ -57,6 +59,13 @@ private static Path resolveJBossHome() {
5759
}
5860
}
5961

62+
@BeforeClass
63+
public static void assumeNotS390() {
64+
if ("s390x".equalsIgnoreCase(System.getProperty("os.arch"))) {
65+
throw new AssumptionViolatedException("WFCORE-7269");
66+
}
67+
}
68+
6069
private static File getDistFile(Path channelPath, boolean exists, boolean directory, List<String> errors) {
6170
Path relative = CHANNEL_INSTALLATION.relativize(channelPath);
6271
System.out.println("Getting dist file for relative path " + relative);

0 commit comments

Comments
 (0)