diff options
-rw-r--r-- | lldb/test/lldbtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/lldbtest.py b/lldb/test/lldbtest.py index 7acd2c733ed..9b15f1bbf86 100644 --- a/lldb/test/lldbtest.py +++ b/lldb/test/lldbtest.py @@ -646,7 +646,7 @@ class TestBase(unittest2.TestCase): if exe: # First run the command. If we are expecting error, set check=False. - self.runCmd(str, trace = (True if trace else False), check = not error) + self.runCmd(str, msg=msg, trace = (True if trace else False), check = not error) # Then compare the output against expected strings. output = self.res.GetError() if error else self.res.GetOutput() |