Skip to content

Commit 2ff6e74

Browse files
committed
fixup! fixup! fixup! fixup! fixup! fixup! fixup! test: fix test-fs-utimes on non-Y2K38 file systems
1 parent 8d2095e commit 2ff6e74

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/parallel/test-fs-utimes-y2K38.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
'use strict';
22
const common = require('../common');
3+
4+
if (common.isIBMi) {
5+
common.skip('fs.utimesSync() currently fails on IBM i with Y2K38 values');
6+
}
7+
38
const tmpdir = require('../common/tmpdir');
9+
tmpdir.refresh();
410

511
const assert = require('assert');
612
const fs = require('fs');
713

8-
tmpdir.refresh();
9-
1014
// Check for Y2K38 support. For Windows and AIX, assume it's there. Windows
1115
// doesn't have `touch` and `date -r` which are used in the check for support.
1216
// AIX lacks `date -r`.

0 commit comments

Comments
 (0)