File test-skip-y2038-on-32bit-time_t.patch of Package nodejs16
xxxxxxxxxx
1
Skip 'test/parallel/test-fs-utimes-y2K38.js' on some platforms.
2
3
This test fails if coreutils' touch was built with 64-bit time_t,
4
while nodejs was built with 32-bit time_t. This is currently the case
5
on i586, ppc and armv7l. Skip the failing last command on those
6
platforms.
7
8
The failure was seen since coreutils-9.0.
9
10
Remove this patch once nodejs(1) also builds with 64-bit time_t.
11
---
12
test/parallel/test-fs-utimes-y2K38.js | 17 +++++++++++++++++
13
1 file changed, 17 insertions(+)
14
15
Index: node-v16.6.2/test/parallel/test-fs-utimes-y2K38.js
16
===================================================================
17
--- node-v16.6.2.orig/test/parallel/test-fs-utimes-y2K38.js
18
+++ node-v16.6.2/test/parallel/test-fs-utimes-y2K38.js
19
20
common.skip('File system appears to lack Y2K38 support (touch failed)');
21
}
22
23
+ // SUSE: touch-9.0 may succeed on platforms with 32-bit time_t,
24
+ // but the test would fail. Skip on those platforms for now.
25
+ const unameResult = spawnSync('uname',
26
+ ['-m'],
27
+ { encoding: 'utf8' });
28
+ if (unameResult.status === 0) {
29
+ if (unameResult.stdout.trim() === 'i686') {
30
+ common.skip('SUSE: test skipped on platforms with 32-bit time_t');
31
+ }
32
+ if (unameResult.stdout.trim() === 'ppc') {
33
+ common.skip('SUSE: test skipped on platforms with 32-bit time_t');
34
+ }
35
+ if (unameResult.stdout.trim() === 'armv7l') {
36
+ common.skip('SUSE: test skipped on platforms with 32-bit time_t');
37
+ }
38
+ }
39
+
40
// On some file systems that lack Y2K38 support, `touch` will succeed but
41
// the time will be incorrect.
42
const dateResult = spawnSync('date',
43