diff options
author | Jason Molenda <jmolenda@apple.com> | 2017-09-25 21:23:37 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2017-09-25 21:23:37 +0000 |
commit | ce9606dd4f675b207c51934020c36f4042014246 (patch) | |
tree | 5373066c8b441c71d91c70e8337354948ec8ce8e /lldb/packages/Python/lldbsuite/test | |
parent | d45720b55a69b71205f090973fc30ed6000fdbed (diff) | |
download | bcm5719-llvm-ce9606dd4f675b207c51934020c36f4042014246.tar.gz bcm5719-llvm-ce9606dd4f675b207c51934020c36f4042014246.zip |
Remove the details of the libstdc++ implementation that were
in TestDataFormatterSkipSummary.py - I'm building this test
with the default c++ library.
Skip TestMTCSimple.py when running for i386.
llvm-svn: 314155
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
2 files changed, 1 insertions, 17 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/TestDataFormatterSkipSummary.py b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/TestDataFormatterSkipSummary.py index 5b52277e8b7..b0b45cb831b 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/TestDataFormatterSkipSummary.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/TestDataFormatterSkipSummary.py @@ -172,23 +172,6 @@ class SkipSummaryDataFormatterTestCase(TestBase): 'm_child2 = {', 'm_some_text = "Just a test"']) - # Expand within a standard string (might depend on the implementation - # of the C++ stdlib you use) - self.expect( - 'frame variable data1.m_child1->m_child2.m_child1.m_child2 --no-summary-depth=2', - substrs=[ - '(DeepData_5) data1.m_child1->m_child2.m_child1.m_child2 = {', - 'm_some_text = {', - '_M_dataplus = (_M_p = "Just a test")']) - - # Repeat the above, but only skip 1 level of summaries - self.expect( - 'frame variable data1.m_child1->m_child2.m_child1.m_child2 --no-summary-depth=1', - substrs=[ - '(DeepData_5) data1.m_child1->m_child2.m_child1.m_child2 = {', - 'm_some_text = "Just a test"', - '}']) - # Change summary and expand, first without --no-summary-depth then with # --no-summary-depth self.runCmd( diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/TestMTCSimple.py b/lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/TestMTCSimple.py index 808011f0fe9..eb6981d04fa 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/TestMTCSimple.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/TestMTCSimple.py @@ -30,6 +30,7 @@ class MTCSimpleTestCase(TestBase): # Call super's setUp(). TestBase.setUp(self) + @skipIf(archs=['i386']) def mtc_tests(self): # Load the test exe = os.path.join(os.getcwd(), "a.out") |