Skip to content

Commit 58a191c

Browse files
committed
Merge branch 'PHP-8.2'
* PHP-8.2: [skip ci] Fix race condition in readline test
2 parents 2d86e95 + b47a7d4 commit 58a191c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

ext/readline/tests/bug77812-readline.phpt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ $php = getenv('TEST_PHP_EXECUTABLE');
1313
$ini = getenv('TEST_PHP_EXTRA_ARGS');
1414
$descriptorspec = [['pipe', 'r'], STDOUT, STDERR];
1515
$proc = proc_open("$php $ini -a", $descriptorspec, $pipes);
16-
var_dump($proc);
1716
fwrite($pipes[0], "echo <<<FOO\n bar\n FOO;\n");
1817
fwrite($pipes[0], "print(<<<FOO\nxx\nFOO);\n");
1918
fwrite($pipes[0], "echo <<<FOO\n xxx\n FOO;\nFOO\n;\n");
@@ -23,7 +22,6 @@ fclose($pipes[0]);
2322
proc_close($proc);
2423
?>
2524
--EXPECTF--
26-
resource(%d) of type (process)
2725
Interactive shell
2826

2927
php > echo <<<FOO

0 commit comments

Comments
 (0)