Closed lpinca closed 2 months ago
test-http2-large-write-multiple-requests
Linux x64
$ ./tools/test.py --repeat=10000 test/parallel/test-http2-large-write-multiple-requests.js === release test-http2-large-write-multiple-requests === Path: parallel/test-http2-large-write-multiple-requests ... Command: out/Release/node /home/luigi/node/test/parallel/test-http2-large-write-multiple-requests.js --- TIMEOUT --- ... [05:05|% 99|+ 9996|- 3]: Done Failed tests: out/Release/node /home/luigi/node/test/parallel/test-http2-large-write-multiple-requests.js out/Release/node /home/luigi/node/test/parallel/test-http2-large-write-multiple-requests.js out/Release/node /home/luigi/node/test/parallel/test-http2-large-write-multiple-requests.js
Similarly to parallel/test-net-write-fully-async-hex-string, the test correctly finished but the process does not exit. This
parallel/test-net-write-fully-async-hex-string
diff --git a/test/parallel/test-http2-large-write-multiple-requests.js b/test/parallel/test-http2-large-write-multiple-requests.js index bcbb1434cb..b5a698e47f 100644 --- a/test/parallel/test-http2-large-write-multiple-requests.js +++ b/test/parallel/test-http2-large-write-multiple-requests.js @@ -1,4 +1,5 @@ 'use strict'; +// Flags: --jitless const common = require('../common'); if (!common.hasCrypto) common.skip('missing crypto');
fixes the issue for both tests on my machine.
Duplicate of https://github.com/nodejs/node/issues/52550.
Test
test-http2-large-write-multiple-requests
Platform
Linux x64
Console output
Build links
Additional information
Similarly to
parallel/test-net-write-fully-async-hex-string
, the test correctly finished but the process does not exit. Thisfixes the issue for both tests on my machine.