diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2016-02-25 14:15:41 +0100 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2016-02-25 23:26:06 +0100 |
commit | 90fa8cf2bf1677545c3f4a8bc967b1674822e90a (patch) | |
tree | 865654e170382cb1698763453201b5759116d09e /testsuite/tests/rts/all.T | |
parent | e02b8c8dadcc77c0c40d5346246f6a3b548258c2 (diff) | |
download | haskell-90fa8cf2bf1677545c3f4a8bc967b1674822e90a.tar.gz |
Mark tests for #11643, #11644, #11645 and #9406 expect_broken
For opt_ways or prof_ways only.
indexed-types/should_compile/all.T called setTestOpts to not run
the tests with opt_ways. Since I'm finding regressions for opt_ways, I
removed it. This only makes a difference when running
`./validate --slow` or `make slowtest`.
Update submodule hpc.
Diffstat (limited to 'testsuite/tests/rts/all.T')
-rw-r--r-- | testsuite/tests/rts/all.T | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testsuite/tests/rts/all.T b/testsuite/tests/rts/all.T index 60513ca795..b81e0e819e 100644 --- a/testsuite/tests/rts/all.T +++ b/testsuite/tests/rts/all.T @@ -255,7 +255,9 @@ test('T9045', [ omit_ways(['ghci']), extra_run_opts('10000 +RTS -A8k -RTS') ], c # I couldn't reproduce 9078 with the -threaded runtime, but could easily # with the non-threaded one. -test('T9078', [ omit_ways(threaded_ways) ], compile_and_run, ['-with-rtsopts="-DS" -debug']) +# Skip the prof_ways, because we don't build the 'debug_p' rts way by default. +test('T9078', [omit_ways(threaded_ways + prof_ways)], compile_and_run, + ['-with-rtsopts="-DS" -debug']) test('T10017', [ when(opsys('mingw32'), skip) , only_ways(threaded_ways), extra_run_opts('+RTS -N2 -RTS') ], compile_and_run, ['']) |