summaryrefslogtreecommitdiff
path: root/testsuite/tests/concurrent
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2019-04-06 21:50:24 -0400
committerBen Gamari <ben@smart-cactus.org>2019-06-12 08:20:25 -0400
commit55b5bb14b9a2487bab80411776ae34c143eddb1a (patch)
tree4e7c8aa223832e7f9004c4863094505b4c32c91e /testsuite/tests/concurrent
parent329dcd7a59e7d46cb5110e1dfb9f8b7f50f0e3a2 (diff)
downloadhaskell-55b5bb14b9a2487bab80411776ae34c143eddb1a.tar.gz
testsuite: Fix omit_ways usage
omit_ways expects a list but this was broken in several cases.
Diffstat (limited to 'testsuite/tests/concurrent')
-rw-r--r--testsuite/tests/concurrent/should_run/all.T2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/concurrent/should_run/all.T b/testsuite/tests/concurrent/should_run/all.T
index 4e60a1dcdf..10d8424c87 100644
--- a/testsuite/tests/concurrent/should_run/all.T
+++ b/testsuite/tests/concurrent/should_run/all.T
@@ -239,7 +239,7 @@ test('conc067', ignore_stdout, compile_and_run, [''])
# omit threaded2, the behaviour of this test is non-deterministic with more
# than one CPU.
-test('conc068', [ omit_ways('threaded2'), exit_code(1) ], compile_and_run, [''])
+test('conc068', [ omit_ways(['threaded2']), exit_code(1) ], compile_and_run, [''])
test('setnumcapabilities001',
[ only_ways(['threaded1','threaded2']),