tools: fix type mismatch in test runner#38289
Merged
richardlau merged 1 commit intonodejs:masterfrom Apr 21, 2021
Merged
Conversation
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
output.diagnosticis a list that is appended to on SmartOS when retrying a test due toECONNREFUSED.node/tools/test.py
Line 612 in 2853b76
node/tools/test.py
Lines 197 to 204 in 2853b76
The test runner checks if
output.diagnosticis truthy and, if so, assigns its value toself.traceback.node/tools/test.py
Lines 376 to 378 in 2853b76
However
self.tracebackis supposed to be a string, and_printDiagnostic()in theTapProgressIndicatorattempts to callsplitlines()on it, which fails if it is a list with:node/tools/test.py
Lines 318 to 324 in 2853b76
Seen in https://ci.nodejs.org/job/node-test-commit-smartos/nodes=smartos18-64/38562/console
cc @nodejs/python