diff options
author | Edward Z. Yang <ezyang@cs.stanford.edu> | 2015-05-30 22:40:35 -0700 |
---|---|---|
committer | Edward Z. Yang <ezyang@cs.stanford.edu> | 2015-05-30 22:40:35 -0700 |
commit | 5a65da43559908a42a701b4dbdff682dcdf2e121 (patch) | |
tree | 42228b708713cb4f4da60cbfb67c281c25084cd6 /testsuite/tests/ghc-e/should_fail | |
parent | 7db2dec2cf4fae68f7bb490d7c7780288350b597 (diff) | |
download | haskell-5a65da43559908a42a701b4dbdff682dcdf2e121.tar.gz |
Don't run T9330fail on Windows, no clobber occurs. #9930
Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu>
Diffstat (limited to 'testsuite/tests/ghc-e/should_fail')
-rw-r--r-- | testsuite/tests/ghc-e/should_fail/all.T | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testsuite/tests/ghc-e/should_fail/all.T b/testsuite/tests/ghc-e/should_fail/all.T index 8e080e95c9..d5400bf713 100644 --- a/testsuite/tests/ghc-e/should_fail/all.T +++ b/testsuite/tests/ghc-e/should_fail/all.T @@ -18,5 +18,7 @@ test('ghc-e-fail1', [exit_code(2), req_interp, ignore_output], run_command, test('ghc-e-fail2', [exit_code(2), req_interp, ignore_output], run_command, ['$MAKE --no-print-directory -s ghc-e-fail2']) -test('T9930fail', [exit_code(2), ignore_output], run_command, +# Don't run on Windows, as executable is written to T9930.exe +# and no failure is induced. +test('T9930fail', [exit_code(2), ignore_output, when(opsys('mingw32'), skip)], run_command, ['$MAKE --no-print-directory -s T9930fail']) |