diff options
author | Boris Kolpackov <boris@kolpackov.net> | 2005-03-15 15:31:47 +0000 |
---|---|---|
committer | Boris Kolpackov <boris@kolpackov.net> | 2005-03-15 15:31:47 +0000 |
commit | 4923580e3a5b3d9e7ff29ef1e5a5339cc7619a4b (patch) | |
tree | 308d6c890fafb2555f0388a4abc4f272ea466bd3 /tests | |
parent | d584d0c1c6945e0b498365e7d17f0fe3cb449d04 (diff) | |
download | gunmake-4923580e3a5b3d9e7ff29ef1e5a5339cc7619a4b.tar.gz |
Fixed Savannah bug #12320.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ChangeLog | 4 | ||||
-rw-r--r-- | tests/scripts/variables/automatic | 15 |
2 files changed, 19 insertions, 0 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog index ae255a2..72575e8 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,7 @@ +2005-03-15 Boris Kolpackov <boris@kolpackov.net> + + * scripts/variables/automatic: Add a test for Savannah bug #12320. + 2005-03-10 Boris Kolpackov <boris@kolpackov.net> * scripts/features/patternrules: Add a test for Savannah bug #12267. diff --git a/tests/scripts/variables/automatic b/tests/scripts/variables/automatic index a51ca20..484cd16 100644 --- a/tests/scripts/variables/automatic +++ b/tests/scripts/variables/automatic @@ -78,4 +78,19 @@ $answer = ".x\n$dir/x.z.x\nx\n\$@.x\n$dir.x\nx.z.x\n.y\n$dir/y.z.y\n\y\n\$@.y\n$ $answer = "$dir/biz.x\n$dir.x\nbiz.x\n"; &compare_output($answer, &get_logfile(1)); +# TEST #3 -- test for Savannah bug #12320. +# +run_make_test(' +.SUFFIXES: .b .src + +mbr.b: mbr.src + @echo $* + +mbr.src: ; @: + +', +'', +'mbr +'); + 1; |