Skip to content

Commit

Permalink
[skip ci] Further increase allowable atime deviation
Browse files Browse the repository at this point in the history
MSAN is slow in particular, leading to potentially higher deviations.
  • Loading branch information
iluuu1994 authored and ramsey committed Nov 23, 2023
1 parent c376f99 commit 28c312c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/standard/tests/file/file.inc
Expand Up @@ -611,7 +611,7 @@ function compare_stats($stat1, $stat2, $fields, $op = "==", $flag = false ) {
if ( ! in_array( $fields[$index], $stat_time_diff_keys ) ) {
$result = false;
echo "Error: stat1 do not match with stat2 at key value: $fields[$index]\n";
} elseif (abs($stat1[ $fields[$index] ] - $stat2[ $fields[$index] ]) > 1) {
} elseif (abs($stat1[ $fields[$index] ] - $stat2[ $fields[$index] ]) > 2) {
$result = false;
echo "Error: stat1 differs too much from stat2 at key value: $fields[$index]\n";
}
Expand Down

0 comments on commit 28c312c

Please sign in to comment.