diff options
author | Tamas Berghammer <tberghammer@google.com> | 2015-12-02 11:35:54 +0000 |
---|---|---|
committer | Tamas Berghammer <tberghammer@google.com> | 2015-12-02 11:35:54 +0000 |
commit | fcf334b8243291e524cd2643c8be2575cfb9b46a (patch) | |
tree | 1ee93b661a422f1eb88adce650c9d8fdff47d81d /lldb/packages/Python/lldbsuite | |
parent | 74e31bc929ae4d13aefda800822ca42223a1f9fd (diff) | |
download | bcm5719-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.py | 4 |
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. |