diff options
author | Joachim Breitner <mail@joachim-breitner.de> | 2013-12-02 15:43:23 +0000 |
---|---|---|
committer | Joachim Breitner <mail@joachim-breitner.de> | 2013-12-02 15:43:23 +0000 |
commit | ca80875a24f019c58e3487d4e34d873eedda53d6 (patch) | |
tree | f8cbe54d8182e303c126c86412129b9edb288e93 /testsuite/tests/plugins | |
parent | acdb3a46555be82ac72a60fd1f9cb0bab351ac3f (diff) | |
download | haskell-ca80875a24f019c58e3487d4e34d873eedda53d6.tar.gz |
Looks like plugin06 really only works with dynamic libraries enabled
Otherwise we get
ghc-stage2: panic! (the 'impossible' happened)
(GHC version 7.7.20131202 for x86_64-unknown-linux):
Static flags have not been initialised!
Please call GHC.parseStaticFlags early enough.
Diffstat (limited to 'testsuite/tests/plugins')
-rw-r--r-- | testsuite/tests/plugins/all.T | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/tests/plugins/all.T b/testsuite/tests/plugins/all.T index 50406c30d6..7e5f9b407d 100644 --- a/testsuite/tests/plugins/all.T +++ b/testsuite/tests/plugins/all.T @@ -34,6 +34,7 @@ test('plugins05', test('plugins06', [ extra_clean(['LinkerTicklingPlugin.hi', 'LinkerTicklingPlugin.o']), + unless(have_dynamic(),skip), only_ways([config.ghc_plugin_way]) ], - multimod_compile_and_run, ['plugins06', '-package ghc ' + config.ghc_th_way_flags ]) + multimod_compile_and_run, ['plugins06', '-package ghc']) |