diff options
author | Ben Gamari <ben@smart-cactus.org> | 2023-03-07 20:23:29 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2023-03-08 15:02:31 -0500 |
commit | 662b61662f7a347c8070d9395169afb3eee6efa4 (patch) | |
tree | fe7cebd58bf8fb05045a7aa9f5dd076e721d84c8 | |
parent | 8f374139f0b5f0a39861a7f9432070f78f9fbba0 (diff) | |
download | haskell-662b61662f7a347c8070d9395169afb3eee6efa4.tar.gz |
testsuite: Only run T22795* in the normal way
It doesn't make sense to run these in multiple ways as they merely test
whether `-threaded`/`-single-threaded` flags.
-rw-r--r-- | testsuite/tests/rts/all.T | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/tests/rts/all.T b/testsuite/tests/rts/all.T index c57cfa0e48..53500ee703 100644 --- a/testsuite/tests/rts/all.T +++ b/testsuite/tests/rts/all.T @@ -570,6 +570,6 @@ test('decodeMyStack_emptyListForMissingFlag', ], compile_and_run, ['']) # Skip for JS platform as the JS RTS is always single threaded -test('T22795a', [js_skip], compile_and_run, ['-threaded']) -test('T22795b', [js_skip], compile_and_run, ['-single-threaded']) -test('T22795c', [js_skip], compile_and_run, ['-threaded -single-threaded']) +test('T22795a', [only_ways(['normal']), js_skip], compile_and_run, ['-threaded']) +test('T22795b', [only_ways(['normal']), js_skip], compile_and_run, ['-single-threaded']) +test('T22795c', [only_ways(['normal']), js_skip], compile_and_run, ['-threaded -single-threaded']) |