]> git.ipfire.org Git - thirdparty/make.git/commit
tests: Run each file in a separate directory
authorPaul Smith <psmith@gnu.org>
Sun, 2 Apr 2023 21:32:09 +0000 (17:32 -0400)
committerPaul Smith <psmith@gnu.org>
Sun, 2 Apr 2023 21:32:09 +0000 (17:32 -0400)
commit971b02d58ee2d19d8ba0c7c9813f02fa86c8fd0c
treec253dde22ed2da31a64584249a179b3e4535170a
parentfdd61fc06865d4393246da2ce05bad96c1aef5aa
tests: Run each file in a separate directory

Avoid cross-contamination between test files by creating a new
working directory for each file, and setting it as the current
directory before starting the tests in that file.

Rename the test output as tNNN.{base,log,diff,mk} where NNN is
a test number starting with 001 for the first test.  It is
slightly more annoying to find diff files since you can't use
autocomplete directly but it is simpler to match things.

Detect the source directory as the location of the test_driver.pl
script, so remove the separate -srcdir option.

* Makefile.am: Remove hacks to create symlinks when building
out-of-tree, and remove -srcdir option from run_make_tests.
* tests/test_driver.pl: Locate $srcpath based on __FILE__, then
compute $toppath as its parent.  Set $scriptpath under $srcpath
and $workpath under the current directory.  Toss $*_filename
and modify get_logfile() etc. to use the suffix directly.  Add
a chdir() around the invocation of the test.
* tests/run_make_tests.pl: Throw out the -srcdir option and use
$srcpath set in test_driver.pl.  The #WORK# helper is no longer
useful so remove it.  Set #PWD# to the current working dir. Always
search the local directory and $srcpath for config-flags.pm.
Use $srcpath for finding the thelp.pl script.
* tests/scripts/features/vpath: Don't put things in work/ as it
is no longer a subdirectory.
* tests/scripts/features/vpathgpath: Ditto.
* tests/scripts/features/vpathplus: Ditto.
* tests/scripts/misc/general1: Ditto.
* tests/scripts/misc/general2: Ditto.
* tests/scripts/options/dash-k: Ditto.
* tests/scripts/options/symlinks: Use $testpath as the working
directory.
* tests/scripts/variables/GNUMAKEFLAGS: Use the test helper to
display env var values (grepping for GNUMAKEFLAGS finds extra things
now that it is our current working directory).
Makefile.am
tests/run_make_tests.pl
tests/scripts/features/vpath
tests/scripts/features/vpathgpath
tests/scripts/features/vpathplus
tests/scripts/misc/general1
tests/scripts/misc/general2
tests/scripts/options/dash-k
tests/scripts/options/symlinks
tests/scripts/variables/GNUMAKEFLAGS
tests/test_driver.pl