diff options
author | sheaf <sam.derbyshire@gmail.com> | 2022-10-17 17:17:32 +0200 |
---|---|---|
committer | Zubin Duggal <zubin.duggal@gmail.com> | 2022-11-03 15:12:38 +0530 |
commit | 14e0442eea543a6c049e06d8863e9b3b234c1b0b (patch) | |
tree | 482aa7b1247624a5f33003ca907bfe9cc08a6754 | |
parent | 9d469bff9626fb65a53978008324b0306e9af3fb (diff) | |
download | haskell-14e0442eea543a6c049e06d8863e9b3b234c1b0b.tar.gz |
Disable some SIMD tests on non-X86 architectures
(cherry picked from commit f7b7a3122185222d5059e37315991afcf319e43c)
-rw-r--r-- | testsuite/tests/unboxedsums/all.T | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/tests/unboxedsums/all.T b/testsuite/tests/unboxedsums/all.T index a34c52f656..3229fb049f 100644 --- a/testsuite/tests/unboxedsums/all.T +++ b/testsuite/tests/unboxedsums/all.T @@ -29,5 +29,6 @@ test('T14051', normal, multi_compile, ['T14051.hs', [('T14051a.hs', '')], '-O2 - test('T19645', normal, compile_and_run, ['']) 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,['']) |