Closed
Description
- Version:
master
- Platform: Windows
smartos15-64
++ - Subsystem: test,async-hooks
file:
https://github.com/nodejs/node/blob/master/test/parallel/test-async-wrap-getasyncid.js
falakings
- https://ci.nodejs.org/job/node-test-binary-windows/8471/
- https://ci.nodejs.org/job/node-test-binary-windows/8362/
- https://ci.nodejs.org/job/node-test-binary-windows/8402/
TAP output
2 parallel/test-async-wrap-getasyncid
duration_ms 0.232
severity fail
stack
Mismatched <anonymous> function calls. Expected 1, actual 0.
at Object.<anonymous> (c:\workspace\node-test-binary-windows\RUN_SUBSET\3\VS_VERSION\vs2015\label\win2008r2\test\parallel\test-async-wrap-getasyncid.js:155:42)
at Module._compile (module.js:569:30)
at Object.Module._extensions..js (module.js:580:10)
at Module.load (module.js:503:32)
at tryModuleLoad (module.js:466:12)
at Function.Module._load (module.js:458:3)
at Function.Module.runMain (module.js:605:10)
at startup (bootstrap_node.js:144:16)
at bootstrap_node.js:561:3
(node:5848) [DEP0064] DeprecationWarning: tls.createSecurePair() is deprecated. Please use tls.Socket instead.
Hypothesis
Seems like a net.server
sometimes doesn't complete it's creation before the test exits...
const server = net.createServer(common.mustCall((socket) => {