diff options
Diffstat (limited to 'tests/scripts/targets')
-rw-r--r-- | tests/scripts/targets/POSIX | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/scripts/targets/POSIX b/tests/scripts/targets/POSIX new file mode 100644 index 0000000..662c16d --- /dev/null +++ b/tests/scripts/targets/POSIX @@ -0,0 +1,26 @@ +# -*-perl-*- + +$description = "Test the behaviour of the .PHONY target."; + +$details = ""; + + +# Ensure turning on .POSIX enables the -e flag for the shell + +run_make_test(q! +.POSIX: +all: ; @false; true +!, + '', "#MAKE#: *** [all] Error 1\n", 512); + +# User settings must override .POSIX + +run_make_test(q! +.SHELLFLAGS = -xc +.POSIX: +all: ; @false; true +!, + '', "+ false\n+ true\n"); + +# This tells the test driver that the perl test script executed properly. +1; |