summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2022-08-11 18:20:30 -0400
committerMatthew Pickering <matthewtpickering@gmail.com>2022-10-12 12:08:57 +0100
commit4669ad4950491db410acbe510129cd852730a071 (patch)
tree01abf72a5633eb8a038464c581013750dad93714
parent3e372073f0b0784e52dfa773534008d43e33956a (diff)
downloadhaskell-wip/test-speed-ci.tar.gz
testsuite: Only run stack cloning tests in the normal waywip/test-speed-ci
These are too dependent upon code generation specifics to pass in most other ways.
-rw-r--r--testsuite/tests/rts/all.T6
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuite/tests/rts/all.T b/testsuite/tests/rts/all.T
index c361e87b2f..130b32fa42 100644
--- a/testsuite/tests/rts/all.T
+++ b/testsuite/tests/rts/all.T
@@ -478,11 +478,13 @@ test('T19381',
test('T20199', [ grep_errmsg('Hello') ]
, makefile_test, [])
-test('cloneMyStack', [extra_files(['cloneStackLib.c'])], compile_and_run, ['cloneStackLib.c'])
+test('ipeMap', [c_src], compile_and_run, [''])
+
+test('cloneMyStack', [only_ways(['normal']), extra_files(['cloneStackLib.c'])], compile_and_run, ['cloneStackLib.c'])
test('cloneMyStack2', ignore_stdout, compile_and_run, [''])
test('cloneMyStack_retBigStackFrame', [extra_files(['cloneStackLib.c']), ignore_stdout], compile_and_run, ['cloneStackLib.c'])
test('cloneThreadStack', [only_ways(['threaded1']), extra_ways(['threaded1']), extra_files(['cloneStackLib.c'])], compile_and_run, ['cloneStackLib.c -threaded'])
-test('decodeMyStack', normal, compile_and_run, ['-finfo-table-map'])
+test('decodeMyStack', only_ways(['normal']), compile_and_run, ['-finfo-table-map'])
# Options:
# - `-kc8K`: Set stack chunk size to it's minimum to provoke underflow stack frames.
test('decodeMyStack_underflowFrames', [extra_run_opts('+RTS -kc8K -RTS')], compile_and_run, ['-finfo-table-map -rtsopts'])