2005-04-19 13:32:06 +00:00
|
|
|
|
|
|
|
Pass -n to php when running tests, to ensure that the system inidir
|
|
|
|
and hence the installed (old) shared extensions are not loaded.
|
|
|
|
|
|
|
|
- when running run-tests.php itself
|
|
|
|
- passed to run-tests.php to ensure it's passed when running each test case
|
|
|
|
- in cases where the PHP executable is run by a test case
|
|
|
|
|
2005-11-29 17:08:03 +00:00
|
|
|
--- php-5.1.1/ext/xml/tests/bug32001.phpt.tests-dashn
|
|
|
|
+++ php-5.1.1/ext/xml/tests/bug32001.phpt
|
|
|
|
@@ -159,7 +159,7 @@
|
2005-04-19 13:32:06 +00:00
|
|
|
|
2005-09-14 14:46:57 +00:00
|
|
|
if (XML_SAX_IMPL == 'libxml') {
|
2005-11-29 17:08:03 +00:00
|
|
|
$php = getenv('TEST_PHP_EXECUTABLE');
|
|
|
|
- preg_match("/^libxml2 Version.*\$/im", `$php -i`, $match);
|
|
|
|
+ preg_match("/^libxml2 Version.*\$/im", `$php -i -n`, $match);
|
2005-09-14 14:46:57 +00:00
|
|
|
echo $match[0], "\n";
|
|
|
|
} else {
|
|
|
|
echo "libxml2 Version => NONE\n";
|
2005-11-29 17:08:03 +00:00
|
|
|
--- php-5.1.1/ext/standard/tests/file/proc_open01.phpt.tests-dashn
|
|
|
|
+++ php-5.1.1/ext/standard/tests/file/proc_open01.phpt
|
2005-04-19 13:32:06 +00:00
|
|
|
@@ -9,7 +9,7 @@
|
|
|
|
die("no php executable defined");
|
|
|
|
}
|
|
|
|
$proc = proc_open(
|
|
|
|
- $php,
|
|
|
|
+ $php . " -n",
|
|
|
|
array(0 => array('pipe', 'r'), 1 => array('pipe', 'w')),
|
|
|
|
$pipes
|
|
|
|
);
|
2005-11-29 17:08:03 +00:00
|
|
|
--- php-5.1.1/ext/standard/tests/file/bug26938.phpt.tests-dashn
|
|
|
|
+++ php-5.1.1/ext/standard/tests/file/bug26938.phpt
|
2005-04-19 13:32:06 +00:00
|
|
|
@@ -5,7 +5,7 @@
|
|
|
|
$out = array();
|
|
|
|
$status = -1;
|
|
|
|
$php = getenv('TEST_PHP_EXECUTABLE');
|
|
|
|
-exec($php . ' -r \''
|
|
|
|
+exec($php . ' -n -r \''
|
|
|
|
. '$lengths = array(10,20000,10000,5,10000,3);'
|
|
|
|
. 'foreach($lengths as $length) {'
|
|
|
|
. ' for($i=0;$i<$length;$i++) print chr(65+$i % 27);'
|
2005-11-29 17:08:03 +00:00
|
|
|
--- php-5.1.1/ext/standard/tests/file/bug26615.phpt.tests-dashn
|
|
|
|
+++ php-5.1.1/ext/standard/tests/file/bug26615.phpt
|
|
|
|
@@ -6,7 +6,7 @@
|
2005-04-19 13:32:06 +00:00
|
|
|
<?php
|
|
|
|
$out = array();
|
|
|
|
$status = -1;
|
|
|
|
-exec($_ENV['TEST_PHP_EXECUTABLE'].' -r \'for($i=1;$i<=5000;$i++) print "$i\n";\' | tr \'\n\' \' \'', $out, $status);
|
|
|
|
+exec($_ENV['TEST_PHP_EXECUTABLE'].' -n -r \'for($i=1;$i<=5000;$i++) print "$i\n";\' | tr \'\n\' \' \'', $out, $status);
|
|
|
|
print_r($out);
|
|
|
|
?>
|
|
|
|
--EXPECT--
|
2005-11-29 17:08:03 +00:00
|
|
|
--- php-5.1.1/run-tests.php.tests-dashn
|
|
|
|
+++ php-5.1.1/run-tests.php
|
|
|
|
@@ -184,7 +184,7 @@
|
|
|
|
settings2params($info_params);
|
|
|
|
$php_info = `$php $pass_options $info_params $info_file`;
|
|
|
|
@unlink($info_file);
|
|
|
|
- define('TESTED_PHP_VERSION', `$php -r 'echo PHP_VERSION;'`);
|
|
|
|
+ define('TESTED_PHP_VERSION', `$php $pass_options -r 'echo PHP_VERSION;'`);
|
2005-04-19 13:32:06 +00:00
|
|
|
|
2005-11-29 17:08:03 +00:00
|
|
|
// check for extensions that need special handling and regenerate
|
|
|
|
$php_extensions = '<?php echo join(",",get_loaded_extensions()); ?>';
|