diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbtest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py index cde8e916d0e..ba41d5d3191 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbtest.py +++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py @@ -2195,6 +2195,8 @@ class TestBase(Base): with recording(self, trace) as sbuf: print("looking at:", output, file=sbuf) + if output is None: + output = "" # The heading says either "Expecting" or "Not expecting". heading = "Expecting" if matching else "Not expecting" |