diff options
author | Boris Kolpackov <boris@kolpackov.net> | 2005-05-31 20:54:30 +0000 |
---|---|---|
committer | Boris Kolpackov <boris@kolpackov.net> | 2005-05-31 20:54:30 +0000 |
commit | af88a3550a6202361aa9eab7e59d83b0bf2c1610 (patch) | |
tree | fdcc9f84496083cac0fa2a852c56e9409c50be56 /tests/scripts/features/include | |
parent | e50e0fdf8856fada821393af3dbd268db09c3b47 (diff) | |
download | gunmake-af88a3550a6202361aa9eab7e59d83b0bf2c1610.tar.gz |
Fixed Savannah bugs #13216 and #13218.
Diffstat (limited to 'tests/scripts/features/include')
-rw-r--r-- | tests/scripts/features/include | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/scripts/features/include b/tests/scripts/features/include index f48cbd3..26ee1bd 100644 --- a/tests/scripts/features/include +++ b/tests/scripts/features/include @@ -78,6 +78,7 @@ hello: ; @echo hello "hello\n" ); + # Test inheritance of dontcare flag when rebuilding makefiles. # run_make_test(' @@ -90,3 +91,20 @@ foo: bar; @: ', '', ''); 1; + + +# Make sure that we don't die when the command fails but we dontcare. +# (Savannah bug #13216). +# +run_make_test(' +.PHONY: all +all:; @: + +-include foo + +foo: bar; @: + +bar:; @false +', '', ''); + +1; |