diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2016-01-26 13:07:38 +0100 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2016-01-27 01:56:42 +0100 |
commit | eeb67c9b833d95fa69932c34a3175054dacb83e2 (patch) | |
tree | 8d9da44c8da4a9c4198c297196ee246bd9c8935f /testsuite/driver/testlib.py | |
parent | 144ddb414a8a4f40df1ad9ab27fcdf38f30db4d3 (diff) | |
download | haskell-eeb67c9b833d95fa69932c34a3175054dacb83e2.tar.gz |
Testsuite: fixup req_profiling tests (#11496)
* T2552 (#10037) is failng for all threaded opt_ways, not for WAY=prof.
* TH_spliceE5_prof (#11495) is failing when ghc_dynamic
* Rename ghci_dynamic to ghc_dynamic. It's the same thing.
Diffstat (limited to 'testsuite/driver/testlib.py')
-rw-r--r-- | testsuite/driver/testlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/driver/testlib.py b/testsuite/driver/testlib.py index 2ac90180e9..97a5a0d4be 100644 --- a/testsuite/driver/testlib.py +++ b/testsuite/driver/testlib.py @@ -336,7 +336,7 @@ def unless(b, f): def doing_ghci(): return 'ghci' in config.run_ways -def ghci_dynamic( ): +def ghc_dynamic(): return config.ghc_dynamic def fast(): |