Skip to content

Commit f17f596

Browse files
committed
Merge commit 'a03f094' into PHP-5.5
* commit 'a03f094': We shouldn't load any local ini files for these tests
2 parents d24f31c + a03f094 commit f17f596

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/pcntl/tests/pcntl_exec.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if (!getenv("TEST_PHP_EXECUTABLE") || !is_executable(getenv("TEST_PHP_EXECUTABLE
88
--FILE--
99
<?php
1010
echo "ok\n";
11-
pcntl_exec(getenv("TEST_PHP_EXECUTABLE"));
11+
pcntl_exec(getenv("TEST_PHP_EXECUTABLE"), ['-n']);
1212
echo "nok\n";
1313
?>
1414
--EXPECT--

ext/pcntl/tests/pcntl_exec_2.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if (getenv("PCNTL_EXEC_TEST_IS_CHILD")) {
1414
exit;
1515
}
1616
echo "ok\n";
17-
pcntl_exec(getenv("TEST_PHP_EXECUTABLE"), array(__FILE__), array(
17+
pcntl_exec(getenv("TEST_PHP_EXECUTABLE"), array('-n', __FILE__), array(
1818
b"PCNTL_EXEC_TEST_IS_CHILD" => b"1",
1919
b"FOO" => b"BAR",
2020
1 => b"long")

0 commit comments

Comments
 (0)