diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-08-19 18:17:48 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-08-19 18:17:48 +0000 |
commit | 0c191863526addd565c9577f08a0910d118f9568 (patch) | |
tree | bc8b7ce646fb657f5249e5caa56b266c3225b307 /lldb/test/persistent_variables/TestPersistentVariables.py | |
parent | abca1734947b75b50ce41968d66ed66af8ee0c9b (diff) | |
download | bcm5719-llvm-0c191863526addd565c9577f08a0910d118f9568.tar.gz bcm5719-llvm-0c191863526addd565c9577f08a0910d118f9568.zip |
Added more informational assert message strings.
llvm-svn: 111536
Diffstat (limited to 'lldb/test/persistent_variables/TestPersistentVariables.py')
-rw-r--r-- | lldb/test/persistent_variables/TestPersistentVariables.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lldb/test/persistent_variables/TestPersistentVariables.py b/lldb/test/persistent_variables/TestPersistentVariables.py index 8aff13ad452..1c2de452838 100644 --- a/lldb/test/persistent_variables/TestPersistentVariables.py +++ b/lldb/test/persistent_variables/TestPersistentVariables.py @@ -19,7 +19,7 @@ class TestPersistentVariables(TestBase): self.assertTrue(res.Succeeded(), CURRENT_EXECUTABLE_SET) self.ci.HandleCommand("breakpoint set --name main", res) - self.assertTrue(res.Succeeded()) + self.assertTrue(res.Succeeded(), CMD_MSG('breakpoint set')) self.ci.HandleCommand("run", res) self.runStarted = True @@ -47,10 +47,6 @@ class TestPersistentVariables(TestBase): #print res.GetOutput() # $3 = (int)14 - self.ci.HandleCommand("continue", res) - self.ci.HandleCommand("quit", res) - self.runStarted = False - if __name__ == '__main__': import atexit |