diff options
author | sheaf <sam.derbyshire@gmail.com> | 2021-06-19 18:27:25 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-06-23 02:59:48 -0400 |
commit | aa1d0eb3629bd9d8fda3605c0b7b4dd52ee3d583 (patch) | |
tree | baa0377d0028e258bdfaf5fbae16b7c17637ed0c | |
parent | e14b893a7fcf4760327484d39a5023510a394f7e (diff) | |
download | haskell-aa1d0eb3629bd9d8fda3605c0b7b4dd52ee3d583.tar.gz |
Enable TcPlugin tests on Windows
-rw-r--r-- | testsuite/tests/typecheck/should_compile/all.T | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/tests/typecheck/should_compile/all.T b/testsuite/tests/typecheck/should_compile/all.T index 968aeb1aa7..429ac69ce0 100644 --- a/testsuite/tests/typecheck/should_compile/all.T +++ b/testsuite/tests/typecheck/should_compile/all.T @@ -491,9 +491,9 @@ test('T10592', normal, compile, ['']) test('T11305', normal, compile, ['']) test('T11254', normal, compile, ['']) test('T11379', normal, compile, ['']) -test('T11462', [unless(have_dynamic(), expect_broken(10301))], multi_compile, +test('T11462', normal, multi_compile, [None, [('T11462_Plugin.hs', '-package ghc'), ('T11462.hs', '')], - '-dynamic']) + '-dynamic' if have_dynamic() else '']) test('T11480', normal, compile, ['']) test('RebindHR', normal, compile, ['']) test('RebindNegate', normal, compile, ['']) @@ -559,9 +559,9 @@ test('T11723', normal, compile, ['']) test('T12987', normal, compile, ['']) test('T11736', normal, compile, ['']) test('T13248', expect_broken(13248), compile, ['']) -test('T11525', [unless(have_dynamic(), expect_broken(10301))], multi_compile, +test('T11525', normal, multi_compile, [None, [('T11525_Plugin.hs', '-package ghc'), ('T11525.hs', '')], - '-dynamic']) + '-dynamic' if have_dynamic() else '']) test('T12923_1', normal, compile, ['']) test('T12923_2', normal, compile, ['']) test('T12923_3', normal, compile, ['']) |