[Lldb-commits] [lldb] r245078 - Don't test the output of "target modules dump symfile a.out" as this isn't something we should be testing for. This makes this test pass again.
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 14 11:18:07 PDT 2015
Author: gclayton
Date: Fri Aug 14 13:18:07 2015
New Revision: 245078
URL: http://llvm.org/viewvc/llvm-project?rev=245078&view=rev
Log:
Don't test the output of "target modules dump symfile a.out" as this isn't something we should be testing for. This makes this test pass again.
Modified:
lldb/trunk/test/lang/c/bitfields/TestBitfields.py
Modified: lldb/trunk/test/lang/c/bitfields/TestBitfields.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/bitfields/TestBitfields.py?rev=245078&r1=245077&r2=245078&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/bitfields/TestBitfields.py (original)
+++ lldb/trunk/test/lang/c/bitfields/TestBitfields.py Fri Aug 14 13:18:07 2015
@@ -120,10 +120,6 @@ class BitfieldsTestCase(TestBase):
self.expect("expr (more_bits.d)", VARIABLES_DISPLAYED_CORRECTLY,
substrs = ['uint8_t', '\\0'])
- self.expect("target modules dump symfile a.out", VARIABLES_DISPLAYED_CORRECTLY,
- substrs = ['Bits', 'uint32_t b3 : 3',
- 'MoreBits', 'uint32_t a : 3'])
-
def bitfields_variable_python(self):
"""Use Python APIs to inspect a bitfields variable."""
exe = os.path.join(os.getcwd(), "a.out")
More information about the lldb-commits
mailing list