summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2000-09-03 09:37:20 +0000
committerStanislav Malyshev <stas@php.net>2000-09-03 09:37:20 +0000
commitf34430de8a8c22c91fc6a1953960b5eacd85cbd2 (patch)
treecf60fabcff8f2fd77a9ad33e824675858951a6e6 /run-tests.php
parent7f8917932fd4de72ea31b6ea4bcf80f86cabf88f (diff)
downloadphp-git-f34430de8a8c22c91fc6a1953960b5eacd85cbd2.tar.gz
Remove deprecated call-time reference
Diffstat (limited to 'run-tests.php')
-rwxr-xr-xrun-tests.php4
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;