We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a245112 commit 8a28561Copy full SHA for 8a28561
Makefile
@@ -73,10 +73,10 @@ testexamples: build
73
74
# run tests that require --shell /bin/bash
75
testbash: build
76
- @echo fail when run with /bin/sh
77
- ! $(SHELLTEST) tests/bash
78
- @echo succeed when run with /bin/bash
79
- $(SHELLTEST) tests/bash --shell /bin/bash
+ @echo bash tests should fail when run with /bin/sh:
+ @(! $(SHELLTEST) tests/bash >/dev/null) && echo ok
+ @echo bash tests should succeed when run with /bin/bash:
+ @$(SHELLTEST) tests/bash --shell /bin/bash
80
81
# run shell tests with several ghc versions
82
# test-with-resolvers: build-with-resolvers $(foreach r,$(RESOLVERS),test-with-resolver-$r)
0 commit comments