diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2016-02-22 18:55:30 +0100 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2016-02-25 23:26:06 +0100 |
commit | e02b8c8dadcc77c0c40d5346246f6a3b548258c2 (patch) | |
tree | 763797cee7bd7e9a0f8c9e6b39fe4835429a105f /testsuite/tests/quasiquotation | |
parent | 8e6e022216b19b10841a896ee1a0b08e019a9481 (diff) | |
download | haskell-e02b8c8dadcc77c0c40d5346246f6a3b548258c2.tar.gz |
Testsuite: for tests that use TH, omit *all* prof_ways
Instead of just profasm and profthreaded. And at least until
-fexternal-interpreter is the default.
Also:
* WAY=profc doesn't exist anymore.
* Omit all threaded_ways for conc039, not just a few.
Diffstat (limited to 'testsuite/tests/quasiquotation')
-rw-r--r-- | testsuite/tests/quasiquotation/qq005/test.T | 2 | ||||
-rw-r--r-- | testsuite/tests/quasiquotation/qq007/test.T | 1 | ||||
-rw-r--r-- | testsuite/tests/quasiquotation/qq008/test.T | 1 | ||||
-rw-r--r-- | testsuite/tests/quasiquotation/qq009/test.T | 1 |
4 files changed, 4 insertions, 1 deletions
diff --git a/testsuite/tests/quasiquotation/qq005/test.T b/testsuite/tests/quasiquotation/qq005/test.T index 2e457af75d..9c4ac5c5e6 100644 --- a/testsuite/tests/quasiquotation/qq005/test.T +++ b/testsuite/tests/quasiquotation/qq005/test.T @@ -4,7 +4,7 @@ test('qq005', # We'd need to jump through some hoops to run this test the # profiling ways, due to the TH use, so for now we just # omit the profiling ways - omit_ways(['profasm','profthreaded']), + omit_ways(prof_ways), extra_clean(['Expr.hi', 'Expr.o', 'Main.hi', 'Main.o'])], multimod_compile_and_run, ['Main', '']) diff --git a/testsuite/tests/quasiquotation/qq007/test.T b/testsuite/tests/quasiquotation/qq007/test.T index 4d6767d3f8..dc01dfc3fb 100644 --- a/testsuite/tests/quasiquotation/qq007/test.T +++ b/testsuite/tests/quasiquotation/qq007/test.T @@ -2,6 +2,7 @@ test('qq007', [when(fast(), skip), extra_clean(['QQ.hi', 'QQ.o', 'Test.hi', 'Test.o']), pre_cmd('$MAKE -s --no-print-directory TH_QQ'), + omit_ways(prof_ways), ], multimod_compile, ['Test', '-v0 ' + config.ghc_th_way_flags]) diff --git a/testsuite/tests/quasiquotation/qq008/test.T b/testsuite/tests/quasiquotation/qq008/test.T index cb1feae7da..33e00376d5 100644 --- a/testsuite/tests/quasiquotation/qq008/test.T +++ b/testsuite/tests/quasiquotation/qq008/test.T @@ -2,6 +2,7 @@ test('qq008', [when(fast(), skip), extra_clean(['QQ.hi', 'QQ.o', 'Test.hi', 'Test.o']), pre_cmd('$MAKE -s --no-print-directory TH_QQ'), + omit_ways(prof_ways), ], multimod_compile, ['Test', '-v0 ' + config.ghc_th_way_flags]) diff --git a/testsuite/tests/quasiquotation/qq009/test.T b/testsuite/tests/quasiquotation/qq009/test.T index 7ad1ebef49..fb06834a58 100644 --- a/testsuite/tests/quasiquotation/qq009/test.T +++ b/testsuite/tests/quasiquotation/qq009/test.T @@ -2,6 +2,7 @@ test('qq009', [when(fast(), skip), extra_clean(['QQ.hi', 'QQ.o', 'Test.hi', 'Test.o']), pre_cmd('$MAKE -s --no-print-directory TH_QQ'), + omit_ways(prof_ways), ], multimod_compile, ['Test', '-v0 ' + config.ghc_th_way_flags]) |