A spurious failure for this test was seen on Travis CI (S390X):
https://travis-ci.org/github/alexdowad/php-src/jobs/
701533828
(The test is expected to finish within 1 second, but it took 1.06 seconds.)
Therefore, increase the threshold a bit.
--TEST--
-Bug #66731: file: extensive backtraking
+Bug #66731: file: extensive backtracking
--SKIPIF--
<?php
if (!class_exists('finfo'))
var_dump(finfo_file($fi, $fd));
$t = microtime(true) - $t;
finfo_close($fi);
-if ($t < 1) {
+if ($t < 1.5) {
echo "Ok\n";
} else {
printf("Failed, time=%.2f\n", $t);