summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite
diff options
context:
space:
mode:
authorTamas Berghammer <tberghammer@google.com>2015-12-02 11:35:54 +0000
committerTamas Berghammer <tberghammer@google.com>2015-12-02 11:35:54 +0000
commitfcf334b8243291e524cd2643c8be2575cfb9b46a (patch)
tree1ee93b661a422f1eb88adce650c9d8fdff47d81d /lldb/packages/Python/lldbsuite
parent74e31bc929ae4d13aefda800822ca42223a1f9fd (diff)
downloadbcm5719-llvm-fcf334b8243291e524cd2643c8be2575cfb9b46a.tar.gz
bcm5719-llvm-fcf334b8243291e524cd2643c8be2575cfb9b46a.zip
Revert "Added support for -gmodule debugging when debug info is left in the .o files on Darwin."
The commit caused a test failure on the linux buildbot in TestDataFormatterSynthVal. llvm-svn: 254502
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r--lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/TestCppIncompleteTypes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/TestCppIncompleteTypes.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/TestCppIncompleteTypes.py
index 324f476efb9..69ea26edbdf 100644
--- a/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/TestCppIncompleteTypes.py
+++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/TestCppIncompleteTypes.py
@@ -14,11 +14,11 @@ class TestCppIncompleteTypes(TestBase):
value_f = frame.EvaluateExpression("f")
self.assertTrue(value_f.IsValid(), "'expr f' results in a valid SBValue object")
- self.assertTrue(value_f.GetError().Success(), "'expr f' is successful")
+ self.assertFalse(value_f.GetError().Success(), "'expr f' results in an error, but LLDB does not crash")
value_a = frame.EvaluateExpression("a")
self.assertTrue(value_a.IsValid(), "'expr a' results in a valid SBValue object")
- self.assertTrue(value_a.GetError().Success(), "'expr a' is successful")
+ self.assertFalse(value_a.GetError().Success(), "'expr a' results in an error, but LLDB does not crash")
@skipIfGcc
@skipIfWindows # Clang on Windows asserts in external record layout in this case.
OpenPOWER on IntegriCloud