diff options
author | Ben Gamari <ben@smart-cactus.org> | 2020-06-24 11:03:33 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-09-05 14:51:28 -0400 |
commit | 2c9f743c0d034b1a99b22d48e4ff7a3b6670aaa5 (patch) | |
tree | ce2a214b352cb69a8789058be73abd73a8e9b5f2 | |
parent | 869f6e193d302c566ff0fbd530e8427440d0d2e3 (diff) | |
download | haskell-2c9f743c0d034b1a99b22d48e4ff7a3b6670aaa5.tar.gz |
testsuite: Mark T5975[ab] as broken on Windows
Due to #7305.
-rwxr-xr-x | testsuite/tests/ghci/scripts/all.T | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/testsuite/tests/ghci/scripts/all.T b/testsuite/tests/ghci/scripts/all.T index e9d40a7d68..2f8aafe2e0 100755 --- a/testsuite/tests/ghci/scripts/all.T +++ b/testsuite/tests/ghci/scripts/all.T @@ -141,8 +141,11 @@ test('T5979', normalise_slashes, normalise_version("transformers")], ghci_script, ['T5979.script']) -test('T5975a', [pre_cmd('touch föøbàr1.hs')], ghci_script, ['T5975a.script']) -test('T5975b', [pre_cmd('touch föøbàr2.hs'), extra_hc_opts('föøbàr2.hs')], +test('T5975a', + [pre_cmd('touch föøbàr1.hs'), when(opsys('mingw32'), expect_broken(7305))], + ghci_script, ['T5975a.script']) +test('T5975b', + [pre_cmd('touch föøbàr2.hs'), extra_hc_opts('föøbàr2.hs'), when(opsys('mingw32'), expect_broken(7305))], ghci_script, ['T5975b.script']) test('T6027ghci', normal, ghci_script, ['T6027ghci.script']) |