diff options
author | Simon Glass <sjg@chromium.org> | 2022-01-22 05:07:32 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-02-08 23:07:59 -0500 |
commit | 8ca0931a913d5e25232c454ceca70635c49058dc (patch) | |
tree | 40193f2dffc5b43855175b7386af48dc12f6145d | |
parent | 19133b71847a2902004bbf72a4c99f4ef128f777 (diff) | |
download | u-boot-8ca0931a913d5e25232c454ceca70635c49058dc.tar.gz u-boot-8ca0931a913d5e25232c454ceca70635c49058dc.tar.bz2 u-boot-8ca0931a913d5e25232c454ceca70635c49058dc.zip |
buildman: Provide a hint on how to debug thread crashes
If a thread crashes it is helpful to try the operation again with
threading disabled. Add a hint about that.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | tools/buildman/builderthread.py | 2 | ||||
-rw-r--r-- | tools/buildman/func_test.py | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/tools/buildman/builderthread.py b/tools/buildman/builderthread.py index 3e450e4067..0faa3ac938 100644 --- a/tools/buildman/builderthread.py +++ b/tools/buildman/builderthread.py @@ -557,6 +557,6 @@ class BuilderThread(threading.Thread): try: self.RunJob(job) except Exception as e: - print('Thread exception:', e) + print('Thread exception (use -T0 to run without threads):', e) self.builder.thread_exceptions.append(e) self.builder.queue.task_done() diff --git a/tools/buildman/func_test.py b/tools/buildman/func_test.py index e09ccb742e..c2e0b0b5c6 100644 --- a/tools/buildman/func_test.py +++ b/tools/buildman/func_test.py @@ -623,4 +623,6 @@ class TestFunctional(unittest.TestCase): with test_util.capture_sys_output() as (stdout, stderr): self.assertEqual(102, self._RunControl('-o', self._output_dir, test_thread_exceptions=True)) - self.assertIn('Thread exception: test exception', stdout.getvalue()) + self.assertIn( + 'Thread exception (use -T0 to run without threads): test exception', + stdout.getvalue()) |