diff options
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/tests/rts/all.T | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/testsuite/tests/rts/all.T b/testsuite/tests/rts/all.T index 0eb54ba42f..d4948727e3 100644 --- a/testsuite/tests/rts/all.T +++ b/testsuite/tests/rts/all.T @@ -233,7 +233,11 @@ test('T9045', [ omit_ways(['ghci']), extra_run_opts('10000 +RTS -A8k -RTS') ], c # with the non-threaded one. test('T9078', [ omit_ways(threaded_ways) ], compile_and_run, ['-with-rtsopts="-DS" -debug']) -test('rdynamic', unless(opsys('linux') or opsys('mingw32'), skip), +test('rdynamic', [ unless(opsys('linux') or opsys('mingw32'), skip) + # this needs runtime infrastructure to do in ghci: + # '-rdynamic' ghc, load modules only via dlopen(RTLD_BLOBAL) and more. + , omit_ways(['ghci']) + ], compile_and_run, ['-rdynamic -package ghc']) # 251 = RTS exit code for "out of memory" |