diff options
-rwxr-xr-x | run-tests.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run-tests.php b/run-tests.php index 9907653974..66c7d8f6c4 100755 --- a/run-tests.php +++ b/run-tests.php @@ -32,7 +32,7 @@ if ($opts['help']) { exit; } */ -do_testing($argc, &$argv); +do_testing($argc, $argv); exit; @@ -119,7 +119,7 @@ function &parse_options(&$argc, &$argv) { return $options; } -function do_testing($argc, $argv) { +function do_testing($argc, &$argv) { global $term, $windows_p, $php, $skip, $testdirs, $tmpfile, $opts, $skipped, $failed, $passed, $total, $term_bold, $term_norm; |