test: use --port=0 in debugger tests that do not have to work on 9229#44342
test: use --port=0 in debugger tests that do not have to work on 9229#44342joyeecheung wants to merge 1 commit intonodejs:mainfrom
Conversation
To avoid failures when there is another running process occupying the port 9229 which may happen if there is a stale process, use the --port argument of node-inspect to use a random port in tests that don't have to work on port 9229. The following tests are not touched: - test-debugger-launch: specifically needs to test port 9229 - test-debugger-pid: needs modifications to node-inspect - test-debugger-random-port-with-inspect-port: same as -pid test
c9b3ff7 to
9c0441e
Compare
|
The tests here can fail if one runs a |
|
cc @nodejs/testing |
|
hmm, apparently the tests are still timing out, so there must be something else that is causing the timeout |
|
It's too old now. I'll open a new one and move them to parallel. |
To avoid failures when there is another running process occupying
the port 9229 which may happen if there is a stale process, use the
--port argument of node-inspect to use a random port in tests that
don't have to work on port 9229.
The following tests are not touched:
Refs: nodejs/build#3014