-
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: improve error message in test-tick-processor #7693
Conversation
Provide additional information about values that indicate test failed.
} | ||
var log = matches[0]; | ||
var out = cp.execSync(process.execPath + | ||
' --prof-process --call-graph-size=10 ' + log, | ||
{encoding: 'utf8'}); | ||
assert(pattern.test(out)); | ||
assert(pattern.test(out), `${pattern} not matchint ${out}`); |
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.
matching?
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.
matching?
Whoops, yes, fixed.
LGTM with a question. |
LGTM |
The commit appears to be missing metadata. |
Unfortunately, yes. Hopping on IRC to figure best thing to do about it, if anything... |
Provide additional information about values that indicate test failed. PR-URL: nodejs#7693 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Brian White <[email protected]>
Re-landed in 9dc0651 and force pushed. :-| |
Provide additional information about values that indicate test failed. PR-URL: #7693 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Brian White <[email protected]>
Provide additional information about values that indicate test failed. PR-URL: #7693 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Brian White <[email protected]>
Provide additional information about values that indicate test failed. PR-URL: #7693 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Brian White <[email protected]>
Provide additional information about values that indicate test failed. PR-URL: #7693 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Brian White <[email protected]>
Provide additional information about values that indicate test failed. PR-URL: #7693 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Brian White <[email protected]>
Provide additional information about values that indicate test failed. PR-URL: #7693 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Brian White <[email protected]>
Checklist
make -j4 test
(UNIX), orvcbuild test nosign
(Windows) passesAffected core subsystem(s)
test
Description of change
Provide additional information about values that indicate test failed.