Closed
Description
- Version: master, v15.x
- Platform:
Linux 4.18.0-240.1.1.el8_3.x86_64 #1 SMP Thu Nov 19 17:20:08 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
- Subsystem: fs
What steps will reproduce the bug?
Run node test/parallel/test-fs-utimes.js
How often does it reproduce? Is there a required condition?
Every time
What is the expected behavior?
The test should pass
What do you see instead?
$ node test/parallel/test-fs-utimes.js
node:assert:119
throw new AssertionError(obj);
^
AssertionError [ERR_ASSERTION]: Expected values to be strictly equal:
+ actual - expected
+ 2147483647
- 2147483648
^
at Object.<anonymous> (/home/mzasso/git/nodejs/node/test/parallel/test-fs-utimes.js:169:10)
at Module._compile (node:internal/modules/cjs/loader:1108:14)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1137:10)
at Module.load (node:internal/modules/cjs/loader:973:32)
at Function.Module._load (node:internal/modules/cjs/loader:813:14)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:76:12)
at node:internal/main/run_main_module:17:47 {
generatedMessage: true,
code: 'ERR_ASSERTION',
actual: 2147483647,
expected: 2147483648,
operator: 'strictEqual'
}
Additional information
I recently updated to CentOS Stream, but I don't remember if it was already failing before that.