summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-e
diff options
context:
space:
mode:
authorPhil Ruffwind <rf@rufflewind.com>2015-02-09 13:39:12 -0600
committerAustin Seipp <austin@well-typed.com>2015-02-09 23:59:38 -0600
commit78833ca6305f0875add94351592e141c032cd088 (patch)
tree5a7bab929b55b3a8ba3312d7c6ff3be8629f413d /testsuite/tests/ghc-e
parent5d5abdca31cdb4db5303999778fa25c4a1371084 (diff)
downloadhaskell-78833ca6305f0875add94351592e141c032cd088.tar.gz
Don't overwrite input file by default
Summary: If the default filename of the output executable coincides with that of main source file, throw an error instead of silently clobbering the input file. Reviewers: austin Reviewed By: austin Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D642 GHC Trac Issues: #9930
Diffstat (limited to 'testsuite/tests/ghc-e')
-rw-r--r--testsuite/tests/ghc-e/should_fail/Makefile3
-rw-r--r--testsuite/tests/ghc-e/should_fail/T99301
-rw-r--r--testsuite/tests/ghc-e/should_fail/all.T3
3 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/tests/ghc-e/should_fail/Makefile b/testsuite/tests/ghc-e/should_fail/Makefile
index c0cebcd546..9aa7c07fa5 100644
--- a/testsuite/tests/ghc-e/should_fail/Makefile
+++ b/testsuite/tests/ghc-e/should_fail/Makefile
@@ -19,3 +19,6 @@ ghc-e-fail1:
ghc-e-fail2:
'$(TEST_HC)' $(TEST_HC_OPTS) -ignore-dot-ghci -e "type A = A"
+
+T9930fail:
+ '$(TEST_HC)' $(TEST_HC_OPTS) -ignore-dot-ghci -x hs T9930
diff --git a/testsuite/tests/ghc-e/should_fail/T9930 b/testsuite/tests/ghc-e/should_fail/T9930
new file mode 100644
index 0000000000..45846a99dd
--- /dev/null
+++ b/testsuite/tests/ghc-e/should_fail/T9930
@@ -0,0 +1 @@
+main = undefined
diff --git a/testsuite/tests/ghc-e/should_fail/all.T b/testsuite/tests/ghc-e/should_fail/all.T
index bfd4a8a0f1..8e080e95c9 100644
--- a/testsuite/tests/ghc-e/should_fail/all.T
+++ b/testsuite/tests/ghc-e/should_fail/all.T
@@ -17,3 +17,6 @@ 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,
+ ['$MAKE --no-print-directory -s T9930fail'])