diff options
Diffstat (limited to 'tests/scripts/functions/addsuffix')
-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; - - - - - - |