Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Lau <rlau@redhat.com>2021-04-19 02:21:22 +0300
committerRichard Lau <rlau@redhat.com>2021-04-21 23:43:46 +0300
commite703ceb8b48befa2097bb11943293706835834bc (patch)
treedc3d26f2617749691e9958646388d64ddeba8178 /tools/test.py
parent053aa6d213ea828fac89864df03890228831db7e (diff)
tools: fix type mismatch in test runner
`output.diagnostic` is a list that is appended to on SmartOS when retrying a test due to `ECONNREFUSED`. The test runner checks if `output.diagnostic` is truthy and, if so, assigns its value to `self.traceback`. However `self.traceback` is supposed to be a string, and `_printDiagnostic()` in the `TapProgressIndicator` attempts to call `splitlines()` on it, which fails if it is a list with: AttributeError: 'list' object has no attribute 'splitlines' PR-URL: https://github.com/nodejs/node/pull/38289 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Christian Clauss <cclauss@me.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Diffstat (limited to 'tools/test.py')
-rwxr-xr-xtools/test.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/test.py b/tools/test.py
index cdeb40d59cd..c3a7ff07e23 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -375,7 +375,10 @@ class TapProgressIndicator(SimpleProgressIndicator):
if output.diagnostic:
self.severity = 'ok'
- self.traceback = output.diagnostic
+ if isinstance(output.diagnostic, list):
+ self.traceback = '\n'.join(output.diagnostic)
+ else:
+ self.traceback = output.diagnostic
duration = output.test.duration