summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsheaf <sam.derbyshire@gmail.com>2022-10-17 17:17:32 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-10-19 10:45:45 -0400
commitf7b7a3122185222d5059e37315991afcf319e43c (patch)
tree544202fb786a56181473a22abd57006090a3d936
parent3be48877e204fca8e5d5ab984186e0d20d81f262 (diff)
downloadhaskell-f7b7a3122185222d5059e37315991afcf319e43c.tar.gz
Disable some SIMD tests on non-X86 architectures
-rw-r--r--testsuite/tests/codeGen/should_run/all.T3
-rw-r--r--testsuite/tests/unboxedsums/all.T3
2 files changed, 4 insertions, 2 deletions
diff --git a/testsuite/tests/codeGen/should_run/all.T b/testsuite/tests/codeGen/should_run/all.T
index e8f20b5837..081cca22b7 100644
--- a/testsuite/tests/codeGen/should_run/all.T
+++ b/testsuite/tests/codeGen/should_run/all.T
@@ -218,4 +218,5 @@ test('T21141', normal, compile_and_run, [''])
test('T21186', normal, compile_and_run, [''])
test('T20640a', normal, compile_and_run, [''])
test('T20640b', normal, compile_and_run, [''])
-test('T22296',[only_ways(llvm_ways)],compile_and_run,[''])
+test('T22296',[only_ways(llvm_ways)
+ ,unless(arch('x86_64'), skip)],compile_and_run,[''])
diff --git a/testsuite/tests/unboxedsums/all.T b/testsuite/tests/unboxedsums/all.T
index acfe825080..5135a5701b 100644
--- a/testsuite/tests/unboxedsums/all.T
+++ b/testsuite/tests/unboxedsums/all.T
@@ -37,5 +37,6 @@ test('T20858b', [extra_files(['T20858.hs'])
test('T20859', normal, compile, [''])
test('T22187',[only_ways(llvm_ways)],compile,[''])
-test('T22187_run',[only_ways(llvm_ways)],compile_and_run,[''])
+test('T22187_run',[only_ways(llvm_ways)
+ ,unless(arch('x86_64'), skip)],compile_and_run,[''])