diff options
Diffstat (limited to 'tests/scripts/variables/SHELL')
-rw-r--r-- | tests/scripts/variables/SHELL | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/scripts/variables/SHELL b/tests/scripts/variables/SHELL index a303540..69871d2 100644 --- a/tests/scripts/variables/SHELL +++ b/tests/scripts/variables/SHELL @@ -56,4 +56,18 @@ two: export SHELL := /./$mshell\n".' one two:;@echo "$@: $(SHELL) $$SHELL" ', '', "two: /./$mshell /./$mshell\none: /././$mshell $mshell\n"); +# Test .SHELLFLAGS + +run_make_test(q! +.SHELLFLAGS = -xc +all: ; @true +!, + '', "+ true\n"); + +run_make_test(q! +.SHELLFLAGS = -xec +all: ; @true; false; true +!, + '', "+ true\n+ false\n#MAKE#: *** [all] Error 1\n", 512); + 1; |