File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ export LANG = en_US.UTF-8
66# which stack.yaml file (& ghc version) to use, can be overridden by STACK env var
77STACKYAML ?= stack.yaml
88
9- # used below and also in tests which run stack (eg large-output.test)
9+ # used below and also in tests which run stack
1010STACKYAMLOPT = --stack-yaml=$(STACKYAML )
1111
1212# the current base stack command
@@ -15,8 +15,10 @@ STACK = stack $(STACKYAMLOPT)
1515# the shelltest executable built with current stack
1616SHELLTESTEXE = $(shell $(STACK ) path --local-install-root) /bin/shelltest
1717
18- # the base shelltest command with common options
19- SHELLTEST =$(SHELLTESTEXE ) --exclude /_ -j16 --hide-successes
18+ # the base shelltest command with common options,
19+ # and the STACKYAMLOPT env var which helps any tests
20+ # which run stack themselves (eg large-output.test)
21+ SHELLTEST = STACKYAMLOPT=$(STACKYAMLOPT ) $(SHELLTESTEXE ) --exclude /_ -j16 --hide-successes
2022
2123# standard targets
2224
You can’t perform that action at this time.
0 commit comments