|
|
0c7b6a |
diff -Nrup a/tests/run_make_tests.pl b/tests/run_make_tests.pl
|
|
|
0c7b6a |
--- a/tests/run_make_tests.pl 2016-04-04 01:38:37.000000000 -0400
|
|
|
0c7b6a |
+++ b/tests/run_make_tests.pl 2018-03-19 00:46:11.329131847 -0400
|
|
|
0c7b6a |
@@ -58,8 +58,8 @@ if ($^O eq 'VMS')
|
|
|
0c7b6a |
*CORE::GLOBAL::rmdir = \&vms_rmdir;
|
|
|
0c7b6a |
}
|
|
|
0c7b6a |
|
|
|
0c7b6a |
-require "test_driver.pl";
|
|
|
0c7b6a |
-require "config-flags.pm";
|
|
|
0c7b6a |
+require "./test_driver.pl";
|
|
|
0c7b6a |
+require "./config-flags.pm";
|
|
|
0c7b6a |
|
|
|
0c7b6a |
# Some target systems might not have the POSIX module...
|
|
|
0c7b6a |
$has_POSIX = eval { require "POSIX.pm" };
|
|
|
0c7b6a |
diff -Nrup a/tests/test_driver.pl b/tests/test_driver.pl
|
|
|
0c7b6a |
--- a/tests/test_driver.pl 2018-03-19 00:41:11.982406829 -0400
|
|
|
0c7b6a |
+++ b/tests/test_driver.pl 2018-03-19 00:54:12.484794671 -0400
|
|
|
0c7b6a |
@@ -165,7 +165,7 @@ sub toplevel
|
|
|
0c7b6a |
$detail = 0; # detailed verbosity
|
|
|
0c7b6a |
$keep = 0; # keep temp files around
|
|
|
0c7b6a |
$workdir = "work"; # The directory where the test will start running
|
|
|
0c7b6a |
- $scriptdir = "scripts"; # The directory where we find the test scripts
|
|
|
0c7b6a |
+ $scriptdir = "./scripts"; # The directory where we find the test scripts
|
|
|
0c7b6a |
$tmpfilesuffix = "t"; # the suffix used on tmpfiles
|
|
|
0c7b6a |
$default_output_stack_level = 0; # used by attach_default_output, etc.
|
|
|
0c7b6a |
$default_input_stack_level = 0; # used by attach_default_input, etc.
|
|
|
0c7b6a |
|