summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2023-03-07 20:23:29 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2023-03-08 15:02:31 -0500
commit662b61662f7a347c8070d9395169afb3eee6efa4 (patch)
treefe7cebd58bf8fb05045a7aa9f5dd076e721d84c8
parent8f374139f0b5f0a39861a7f9432070f78f9fbba0 (diff)
downloadhaskell-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.T6
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'])