diff options
author | Paul Smith <psmith@gnu.org> | 2000-06-19 21:22:44 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2000-06-19 21:22:44 +0000 |
commit | 0d70d054586cf2e718aacd5fccfc47e32975b092 (patch) | |
tree | 32fb96cf9f4774e02ed385228361ad31cc4bb901 /tests/scripts/functions | |
parent | f04e78f11bb42e911a62c52c410575f602d8dec5 (diff) | |
download | gunmake-0d70d054586cf2e718aacd5fccfc47e32975b092.tar.gz |
* Various fixes for problems in the 3.79.0.1 pretest.
Diffstat (limited to 'tests/scripts/functions')
-rw-r--r-- | tests/scripts/functions/addsuffix | 38 |
1 files changed, 15 insertions, 23 deletions
diff --git a/tests/scripts/functions/addsuffix b/tests/scripts/functions/addsuffix index d150f07..da4fbb7 100644 --- a/tests/scripts/functions/addsuffix +++ b/tests/scripts/functions/addsuffix @@ -1,44 +1,36 @@ -$description = "The following test creates a makefile to test the addsuffix " - ."function."; +# -*-perl-*- +$description = "Test the addsuffix function."; $details = ""; -# IF YOU NEED >1 MAKEFILE FOR THIS TEST, USE &get_tmpfile; TO GET -# THE NAME OF THE MAKEFILE. THIS INSURES CONSISTENCY AND KEEPS TRACK OF -# HOW MANY MAKEFILES EXIST FOR EASY DELETION AT THE END. -# EXAMPLE: $makefile2 = &get_tmpfile; - open(MAKEFILE,"> $makefile"); # The Contents of the MAKEFILE ... -print MAKEFILE "string := \$(addsuffix .c,src${pathsep}a.b.z.foo hacks) \n" - ."all: \n" - ."\t\@echo \$(string) \n"; +print MAKEFILE <<EOMAKE; +string := \$(addsuffix .c,src${pathsep}a.b.z.foo hacks) +one: ; \@echo \$(string) -# END of Contents of MAKEFILE +two: ; \@echo \$(addsuffix foo,) +EOMAKE close(MAKEFILE); -&run_make_with_options($makefile,"",&get_logfile,0); -# Create the answer to what should be produced by this Makefile +# TEST 0 + +&run_make_with_options($makefile, "", &get_logfile); $answer = "src${pathsep}a.b.z.foo.c hacks.c\n"; +&compare_output($answer,&get_logfile(1)); -# COMPARE RESULTS -# In this call to compare output, you should use the call &get_logfile(1) -# to send the name of the last logfile created. You may also use -# the special call &get_logfile(1) which returns the same as &get_logfile(1). +# TEST 1 +&run_make_with_options($makefile, "two", &get_logfile); +$answer = "\n"; &compare_output($answer,&get_logfile(1)); + # This tells the test driver that the perl test script executed properly. 1; - - - - - - |