diff options
-rw-r--r-- | lldb/test/plugins/builder_base.py | 2 | ||||
-rw-r--r-- | lldb/test/warnings/uuid/TestUUIDMismatchWanring.py | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/lldb/test/plugins/builder_base.py b/lldb/test/plugins/builder_base.py index 697ffa47b5a..78fc2f0b036 100644 --- a/lldb/test/plugins/builder_base.py +++ b/lldb/test/plugins/builder_base.py @@ -101,6 +101,8 @@ def buildDwarf(sender=None, architecture=None, compiler=None, dictionary=None, c def cleanup(sender=None, dictionary=None): """Perform a platform-specific cleanup after the test.""" + #import traceback + #traceback.print_stack() if os.path.isfile("Makefile"): lldbtest.system(["/bin/sh", "-c", "make clean"+getCmdLine(dictionary)], sender=sender) diff --git a/lldb/test/warnings/uuid/TestUUIDMismatchWanring.py b/lldb/test/warnings/uuid/TestUUIDMismatchWanring.py index 1c0db9f24c2..99ae7467ee5 100644 --- a/lldb/test/warnings/uuid/TestUUIDMismatchWanring.py +++ b/lldb/test/warnings/uuid/TestUUIDMismatchWanring.py @@ -100,8 +100,7 @@ class UUIDMismatchWarningCase(TestBase): print "\n\nContents of child_read.txt:" print from_child - # Test that str_input completes to our patterns. - # If each pattern matches from_child, the completion mechanism works! + # Test that lldb emits the "UUID mismatch detected!" message. self.expect(from_child, msg="UUID mismatch expected!", exe=False, substrs = ['warning: UUID mismatch detected']) |