mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-28 15:57:48 +00:00
414af96a50
Go through both run_make_tests.pl and test_driver.pl and slightly modernize the Perl and clean up indentation etc. Fix a number of warnings in the test scripts detected by running with -w. * tests/test_driver.pl: Move make error string detection out of the base test driver. (run_all_tests): Ensure that we always look for tests in the cwd. * tests/run_make_tests.pl: Use File::Spec for path manipulations. Correctly use setlocale() when detecting error strings. Get configuration from the config-flags.pm file not config.status. * tests/scripts/features/archives: Use new $cwddir variable. * tests/scripts/features/reinvoke: Add missing semicolon. * tests/scripts/features/vpath2: Avoid non-existent variable. * tests/scripts/functions/foreach: Escape variables. * tests/scripts/misc/bs-nl: Remove non-existing \v escape sequence. * tests/scripts/misc/general4: Use handy create_file(). * tests/scripts/options/dash-C: Use Cwd/$cwddir. * tests/scripts/options/dash-I: Use subst_make_string() and #PWD#. * tests/scripts/options/symlinks: Use File::Spec. * tests/scripts/targets/DEFAULT: Use create_file and run_make_test. * tests/scripts/variables/CURDIR: Use run_make_test. * tests/scripts/variables/automatic: Remove extraneous "\". * tests/scripts/vms/library: Remove extra "my" and extraneous "\".
61 lines
1.6 KiB
Perl
61 lines
1.6 KiB
Perl
# -*-perl-*-
|
|
|
|
$description ="The following test creates a makefile to test the -I option.";
|
|
|
|
$details = "\
|
|
This test tests the -I option by including a filename in
|
|
another directory and giving make that directory name
|
|
under -I in the command line. Without this option, the make
|
|
would fail to find the included file. It also checks to make
|
|
sure that the -I option gets passed to recursive makes.";
|
|
|
|
$makefile2 = &get_tmpfile;
|
|
|
|
open(MAKEFILE,"> $makefile");
|
|
|
|
# The Contents of the MAKEFILE ...
|
|
|
|
$mf2 = substr ($makefile2, index ($makefile2, $pathsep) + 1);
|
|
print MAKEFILE <<EOF;
|
|
include $mf2
|
|
all:
|
|
\t\@echo There should be no errors for this makefile.
|
|
EOF
|
|
|
|
# END of Contents of MAKEFILE
|
|
|
|
close(MAKEFILE);
|
|
|
|
|
|
open(MAKEFILE,"> $makefile2");
|
|
|
|
print MAKEFILE <<EOF;
|
|
ANOTHER:
|
|
\t\@echo This is another included makefile
|
|
recurse:
|
|
\t\$(MAKE) ANOTHER -f $makefile
|
|
EOF
|
|
|
|
close(MAKEFILE);
|
|
|
|
&run_make_with_options($makefile,"-I $workdir all",&get_logfile);
|
|
|
|
# Create the answer to what should be produced by this Makefile
|
|
$answer = "There should be no errors for this makefile.\n";
|
|
&compare_output($answer,&get_logfile(1));
|
|
|
|
|
|
$answer = "This is another included makefile\n";
|
|
&run_make_with_options($makefile,"-I $workdir ANOTHER",&get_logfile);
|
|
&compare_output($answer,&get_logfile(1));
|
|
|
|
|
|
$answer = subst_make_string("$mkpath ANOTHER -f $makefile
|
|
#MAKE#[1]: Entering directory '#PWD#'
|
|
This is another included makefile
|
|
#MAKE#[1]: Leaving directory '#PWD#'\n");
|
|
|
|
&run_make_with_options($makefile,"-I $workdir recurse",&get_logfile);
|
|
&compare_output($answer,&get_logfile(1));
|
|
|
|
1;
|