diff options
author | Greg Steuck <greg@nest.cx> | 2022-03-05 17:39:38 -0800 |
---|---|---|
committer | Greg Steuck <greg@nest.cx> | 2022-03-05 17:44:10 -0800 |
commit | 706deee0524ca6af26c8b8d5cff17a6e401a2c18 (patch) | |
tree | 6365df56c22011a956dafc20581597f30c2c9c4b | |
parent | 584cd5ae200866fbfb480fab9591f0acf94a8033 (diff) | |
download | haskell-706deee0524ca6af26c8b8d5cff17a6e401a2c18.tar.gz |
Make T20214 terminate promptly be setting input to /dev/null
It was hanging and timing out on OpenBSD before.
-rw-r--r-- | testsuite/tests/ghci/should_fail/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/ghci/should_fail/Makefile b/testsuite/tests/ghci/should_fail/Makefile index c9fd6f0d6c..0a285dc7c5 100644 --- a/testsuite/tests/ghci/should_fail/Makefile +++ b/testsuite/tests/ghci/should_fail/Makefile @@ -3,4 +3,4 @@ include $(TOP)/mk/boilerplate.mk include $(TOP)/mk/test.mk T20214: - "$(TEST_HC)" $(TEST_HC_OPTS_INTERACTIVE) T20214.hs 2>&1 | grep "SIMD" + "$(TEST_HC)" $(TEST_HC_OPTS_INTERACTIVE) T20214.hs 2>&1 </dev/null | grep "SIMD" |