Skip to content

Commit

Permalink
Increase expected timing on Travis
Browse files Browse the repository at this point in the history
If 5ms to read/write 8 bytes still has issue, probably next this test
should skip on Travis to avoid false positive fails.
  • Loading branch information
weltling committed Aug 3, 2017
1 parent 9ba2cfd commit 9689796
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/standard/tests/streams/proc_open_bug69900.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Bug #69900 Commandline input/output weird behaviour with STDIO
error_reporting(E_ALL);

$fl = dirname(__FILE__) . DIRECTORY_SEPARATOR . "test69900.php";
$max_ms = ((bool)getenv('TRAVIS')) ? 3 : 1;
$max_ms = ((bool)getenv('TRAVIS')) ? 5 : 1;

$test_content = '<?php
Expand Down

0 comments on commit 9689796

Please sign in to comment.