We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d2095e commit 2ff6e74Copy full SHA for 2ff6e74
test/parallel/test-fs-utimes-y2K38.js
@@ -1,12 +1,16 @@
1
'use strict';
2
const common = require('../common');
3
+
4
+if (common.isIBMi) {
5
+ common.skip('fs.utimesSync() currently fails on IBM i with Y2K38 values');
6
+}
7
8
const tmpdir = require('../common/tmpdir');
9
+tmpdir.refresh();
10
11
const assert = require('assert');
12
const fs = require('fs');
13
-tmpdir.refresh();
-
14
// Check for Y2K38 support. For Windows and AIX, assume it's there. Windows
15
// doesn't have `touch` and `date -r` which are used in the check for support.
16
// AIX lacks `date -r`.
0 commit comments