diff options
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; |