Skip to content

Commit e874ded

Browse files
committed
squash: exclude linux/arm from test
1 parent 9e40873 commit e874ded

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/parallel/test-fs-stat-date.mjs

+2-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ async function runTest(atime, mtime, margin = 0) {
6666
// TODO(LiviaMedeiros): investigate outdated stat time on FreeBSD.
6767
// On Windows, filetime is stored and handled differently. Supporting dates
6868
// after Y2038 is preferred over supporting dates before 1970-01-01.
69-
if (!common.isFreeBSD && !common.isWindows) {
69+
if (!common.isFreeBSD && !common.isWindows &&
70+
!(process.arch === 'arm' && process.platform === 'linux')) {
7071
await runTest(-40691, -355, 1); // Potential precision loss on 32bit
7172
await runTest(-355, -40691, 1); // Potential precision loss on 32bit
7273
await runTest(-1, -1);

0 commit comments

Comments
 (0)