From dc922e3f4c442255ba8deb84c9300aa7e3a6108c Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Sun, 26 May 2013 16:53:17 -0400 Subject: [SV #38442] Add library names to the string cache. --- tests/ChangeLog | 2 ++ tests/scripts/features/archives | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+) (limited to 'tests') diff --git a/tests/ChangeLog b/tests/ChangeLog index 7f1bd3c..7bdc5a1 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,5 +1,7 @@ 2013-05-26 Paul Smith + * scripts/features/archives: Test for Savannah bug #38442. + * scripts/misc/bs-nl: Test for Savannah bug #39035. Add a test for Savannah bug #38945. diff --git a/tests/scripts/features/archives b/tests/scripts/features/archives index 41ac26d..4b331c2 100644 --- a/tests/scripts/features/archives +++ b/tests/scripts/features/archives @@ -51,5 +51,25 @@ foo(bar).baz: ; @echo '$@' !, '', "foo(bar).baz\n"); +# Check renaming of archive targets. +# See Savannah bug #38442 + +mkdir('artest', 0777); +touch('foo.vhd'); + +run_make_test(q! +DIR = artest +vpath % $(DIR) +default: lib(foo) +(%): %.vhd ; @cd $(DIR) && touch $(*F) && $(AR) $(ARFLAGS) $@ $(*F) >/dev/null 2>&1 && rm $(*F) +.PHONY: default +!, + '', ""); + +run_make_test(undef, '', "#MAKE#: Nothing to be done for 'default'.\n"); + +unlink('foo.vhd'); +remove_directory_tree('artest'); + # This tells the test driver that the perl test script executed properly. 1; -- cgit v1.2.3