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/scripts/variables | |
parent | d584d0c1c6945e0b498365e7d17f0fe3cb449d04 (diff) | |
download | gunmake-4923580e3a5b3d9e7ff29ef1e5a5339cc7619a4b.tar.gz |
Fixed Savannah bug #12320.
Diffstat (limited to 'tests/scripts/variables')
-rw-r--r-- | tests/scripts/variables/automatic | 15 |
1 files changed, 15 insertions, 0 deletions
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; |