summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2011-07-01 23:13:53 +0000
committerFelipe Pena <felipe@php.net>2011-07-01 23:13:53 +0000
commit5f75a28d015c3ceb31bc1117b8d6196cf9ecb597 (patch)
tree05d4aa53565d3168e83309f8c59a0ec4836343aa /run-tests.php
parent8f80896718c4ce7b47c6f4f603ccb7095a8fecca (diff)
downloadphp-git-5f75a28d015c3ceb31bc1117b8d6196cf9ecb597.tar.gz
- Fixed bug #55080 (Deprecated call in run--test.php)
patch by: fedora at famillecollet dot com
Diffstat (limited to 'run-tests.php')
-rwxr-xr-xrun-tests.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php
index 5a4fccc7dc..bc5f99bc09 100755
--- a/run-tests.php
+++ b/run-tests.php
@@ -489,7 +489,7 @@ if (getenv('TEST_PHP_ARGS')) {
$argv = array(__FILE__);
}
- $argv = array_merge($argv, split(' ', getenv('TEST_PHP_ARGS')));
+ $argv = array_merge($argv, explode(' ', getenv('TEST_PHP_ARGS')));
$argc = count($argv);
}