-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
inspector: fix tests on Windows #8528
Conversation
@@ -154,11 +175,12 @@ static void fail_callback(uv_stream_t* stream, ssize_t nread, | |||
} | |||
|
|||
static void expect_nothing_on_client() { | |||
int err = uv_read_start(reinterpret_cast<uv_stream_t *>(&client_socket), | |||
buffer_alloc_cb, fail_callback); | |||
uv_stream_t* stream = reinterpret_cast<uv_stream_t *>(&client_socket); |
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.
Can you write it as uv_stream_t*
(no space) while you're here?
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.
Updated this location and several similar ones.
LGTM |
Should help with #8034
Thank you for the review. Commit was updated. |
The AIX build failure looked mysterious; relaunched: https://ci.nodejs.org/job/node-test-commit-aix/861/. |
CI is green enough. AIX rebuild was successful and the arm-fanned failure looks like a bot issue. |
Landed as 6f9157f. |
Should help with nodejs#8034. PR-URL: nodejs#8528 Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
Checklist
make -j4 test
(UNIX), orvcbuild test nosign
(Windows) passesAffected core subsystem(s)
Inspector protocol implementation & test
Description of change
Should help with #8034