Skip to content

Commit

Permalink
squash: exclude linux/arm from test
Browse files Browse the repository at this point in the history
  • Loading branch information
LiviaMedeiros committed Aug 4, 2022
1 parent 9e40873 commit e874ded
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/parallel/test-fs-stat-date.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ async function runTest(atime, mtime, margin = 0) {
// TODO(LiviaMedeiros): investigate outdated stat time on FreeBSD.
// On Windows, filetime is stored and handled differently. Supporting dates
// after Y2038 is preferred over supporting dates before 1970-01-01.
if (!common.isFreeBSD && !common.isWindows) {
if (!common.isFreeBSD && !common.isWindows &&
!(process.arch === 'arm' && process.platform === 'linux')) {
await runTest(-40691, -355, 1); // Potential precision loss on 32bit
await runTest(-355, -40691, 1); // Potential precision loss on 32bit
await runTest(-1, -1);
Expand Down

0 comments on commit e874ded

Please sign in to comment.