-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: refactor parallel/test-timer-close #10517
Conversation
CI: https://ci.nodejs.org/job/node-test-commit/6915/ cc/ @bnoordhuis as you raised the original issue which this test checks (#1287) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CI is green, LGTM
|
||
t.close(onclose); | ||
t.close(onclose); | ||
const t = new (process.binding('timer_wrap').Timer)(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm... can't say that I'm really a fan of this style (even tho I know it was used before this change)... I prefer separating out the call to process.binding...
const Timer = process.binding('timer_wrap').Timer;
const t = new Timer();
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor nit but otherwise LGTM
7885df6
to
ee67ff2
Compare
ee67ff2
to
aa1919d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still LGTM (post @jasnell's nit)
CI 2: https://ci.nodejs.org/job/node-test-commit/6919/
EDIT: Looks like FreeBSD CI failures were unrelated to this test.
aa1919d
to
4a78216
Compare
Refactor and simplify parallel/test-timer-close.js. Add comment to describe the test case.
4a78216
to
3a480ed
Compare
CI 4: https://ci.nodejs.org/job/node-test-commit/6983/ EDIT: This failure on FreeBSD seems unrelated:
|
Landed in 5a51955 |
Refactor and simplify parallel/test-timer-close.js. Add comment to describe the test case. PR-URL: nodejs#10517 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]>
Refactor and simplify parallel/test-timer-close.js. Add comment to describe the test case. PR-URL: nodejs#10517 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]>
Refactor and simplify parallel/test-timer-close.js. Add comment to describe the test case. PR-URL: #10517 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]>
Refactor and simplify parallel/test-timer-close.js. Add comment to describe the test case. PR-URL: nodejs#10517 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]>
Refactor and simplify parallel/test-timer-close.js. Add comment to describe the test case. PR-URL: nodejs#10517 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]>
This does not land cleanly in LTS. Added dont-land label. Please feel free to manually backport |
Refactor and simplify parallel/test-timer-close.js. Add comment to
describe the test case.
Checklist
Affected core subsystem(s)
test
Description of change
Refactor and simplify test-timer-close.js.