diff options
author | Boris Kolpackov <boris@kolpackov.net> | 2005-03-03 17:39:48 +0000 |
---|---|---|
committer | Boris Kolpackov <boris@kolpackov.net> | 2005-03-03 17:39:48 +0000 |
commit | cb2f20026908d5c6e48e2cd3e3e65b5f67498d02 (patch) | |
tree | 82f2bd2fa0de34d8cbd8abf62a7827b0879dd5b6 /tests/scripts/features/se_statpat | |
parent | 0759af440a1d721f0248b2ea83fe0ad8a1c19cfb (diff) | |
download | gunmake-cb2f20026908d5c6e48e2cd3e3e65b5f67498d02.tar.gz |
Fixed stem termination and stem triple-expansion bugs.
Diffstat (limited to 'tests/scripts/features/se_statpat')
-rw-r--r-- | tests/scripts/features/se_statpat | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/scripts/features/se_statpat b/tests/scripts/features/se_statpat index 9f1b4a3..3c54622 100644 --- a/tests/scripts/features/se_statpat +++ b/tests/scripts/features/se_statpat @@ -102,5 +102,23 @@ baz.a.1 baz.a.2 '); + +# Test #4: Make sure stem triple-expansion does not happen. +# +run_make_test(' +foo$$bar: f%r: % $$*.1 + @echo \'$*\' + +oo$$ba oo$$ba.1: + @echo \'$@\' + +', +'', +'oo$ba +oo$ba.1 +oo$ba +'); + + # This tells the test driver that the perl test script executed properly. 1; |