From 28c312c9948cecf10670a0be245ee21d25e3417f Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Tue, 14 Nov 2023 18:36:07 +0100 Subject: [PATCH] [skip ci] Further increase allowable atime deviation MSAN is slow in particular, leading to potentially higher deviations. --- ext/standard/tests/file/file.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/tests/file/file.inc b/ext/standard/tests/file/file.inc index c53c217e970ac..c972784f9da36 100644 --- a/ext/standard/tests/file/file.inc +++ b/ext/standard/tests/file/file.inc @@ -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"; }