diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-04-06 21:50:24 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-06-12 08:20:25 -0400 |
commit | 55b5bb14b9a2487bab80411776ae34c143eddb1a (patch) | |
tree | 4e7c8aa223832e7f9004c4863094505b4c32c91e /testsuite/tests/rts | |
parent | 329dcd7a59e7d46cb5110e1dfb9f8b7f50f0e3a2 (diff) | |
download | haskell-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/rts')
-rw-r--r-- | testsuite/tests/rts/all.T | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/rts/all.T b/testsuite/tests/rts/all.T index 3c7afc0b1c..173ed7c601 100644 --- a/testsuite/tests/rts/all.T +++ b/testsuite/tests/rts/all.T @@ -93,7 +93,7 @@ test('stack002', [extra_files(['stack001.hs']), # run this test with very small stack chunks to exercise the stack # overflow/underflow machinery. -test('stack003', [ omit_ways('ghci'), # uses unboxed tuples +test('stack003', [ omit_ways(['ghci']), # uses unboxed tuples extra_run_opts('500000 +RTS -kc1k -kb100 -K96m -RTS') ], compile_and_run, ['']) |