summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2019-02-05 17:06:25 -0500
committerBen Gamari <ben@smart-cactus.org>2019-10-22 12:18:44 -0400
commit01fd0242c9e8aeaa78f268f3f9b1db1933f91b6e (patch)
tree6751ef7c1451638b9d739ffff635bda8c2d4a4a5
parent079879570bd697f6e8c8259bcc63eaa17f6cffaf (diff)
downloadhaskell-01fd0242c9e8aeaa78f268f3f9b1db1933f91b6e.tar.gz
testsuite: Don't run T15892 in nonmoving ways
The nonmoving GC doesn't support `+RTS -G1`, which this test insists on.
-rw-r--r--testsuite/tests/codeGen/should_run/all.T8
1 files changed, 5 insertions, 3 deletions
diff --git a/testsuite/tests/codeGen/should_run/all.T b/testsuite/tests/codeGen/should_run/all.T
index 0882f2b605..f473ac523e 100644
--- a/testsuite/tests/codeGen/should_run/all.T
+++ b/testsuite/tests/codeGen/should_run/all.T
@@ -194,9 +194,11 @@ test('T15696_3', normal, compile_and_run, ['-O'])
test('T15892',
[ ignore_stdout,
- # we want to do lots of major GC to make the bug more likely to
- # happen, so -G1 -A32k:
- extra_run_opts('+RTS -G1 -A32k -RTS') ],
+ # -G1 is unsupported by the nonmoving GC
+ omit_ways(['nonmoving', 'nonmoving_thr']),
+ # we want to do lots of major GC to make the bug more likely to
+ # happen, so -G1 -A32k:
+ extra_run_opts('+RTS -G1 -A32k -RTS') ],
compile_and_run, ['-O'])
test('T16617', normal, compile_and_run, [''])
test('T16449_2', exit_code(0), compile_and_run, [''])