diff options
author | Paul Smith <psmith@gnu.org> | 2012-03-03 22:56:20 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2012-03-03 22:56:20 +0000 |
commit | 405c89ba1e33e013f7e582e28f969fc3f39b9b2c (patch) | |
tree | 55f781c6c18edf75f75ac95f54f9fec2e631996b /tests/scripts/variables | |
parent | a77c5c09100ef56940546b543dd1c515529ca4bb (diff) | |
download | gunmake-405c89ba1e33e013f7e582e28f969fc3f39b9b2c.tar.gz |
Ensure that .ONESHELL works with .SHELLFLAGS options containing whitespace.
See Savannah bug #35397.
Diffstat (limited to 'tests/scripts/variables')
-rw-r--r-- | tests/scripts/variables/SHELL | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/scripts/variables/SHELL b/tests/scripts/variables/SHELL index 4416ce1..3d49349 100644 --- a/tests/scripts/variables/SHELL +++ b/tests/scripts/variables/SHELL @@ -70,6 +70,14 @@ all: ; \@$script !, '', $out); +# Do it again but add spaces to SHELLFLAGS +$flags = '-x -c'; +run_make_test(qq! +.SHELLFLAGS = $flags +all: ; \@$script +!, + '', $out); + # We can't just use "false" because on different systems it provides a # different exit code--once again Solaris: false exits with 255 not 1 $script = 'true; false; true'; |