diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2020-01-03 16:45:23 +0100 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2020-01-03 16:45:23 +0100 |
commit | a2e98a6a015423100f9dce54921cbe6816fbbd30 (patch) | |
tree | 5319e48ccff579bbfd736b22f455b8889a27b29a /ext/standard/tests | |
parent | 1400f4ac1277f83de05503cdaf486c40b0d10569 (diff) | |
parent | fc6e83e01a187d48a54fd821e0cc2aad1dcfeab5 (diff) | |
download | php-git-a2e98a6a015423100f9dce54921cbe6816fbbd30.tar.gz |
Merge branch 'PHP-7.4'
* PHP-7.4:
Try to fix intermittently failing test case
Diffstat (limited to 'ext/standard/tests')
-rw-r--r-- | ext/standard/tests/streams/bug78883.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/tests/streams/bug78883.phpt b/ext/standard/tests/streams/bug78883.phpt index 2dc1bc7d95..72380ddbd3 100644 --- a/ext/standard/tests/streams/bug78883.phpt +++ b/ext/standard/tests/streams/bug78883.phpt @@ -17,7 +17,7 @@ $cmd = 'cmd.exe "/c START ^"^" /WAIT ' . PHP_BINARY . ' -r ^"var_dump(fgets(STDI $proc = proc_open($cmd, $descriptorspec, $pipes);
var_dump(is_resource($proc));
$pid = proc_get_status($proc)['pid'];
-sleep(1);
+sleep(2);
$bug_is_present = !proc_get_status($proc)['running'];
if (!$bug_is_present) {
// if the bug is not present, it will hang waiting for stdin,
|