diff options
| author | Zachary Turner <zturner@google.com> | 2016-02-09 21:36:32 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2016-02-09 21:36:32 +0000 |
| commit | 9625c6fc9ff831376cd4d022a7b1c6c0075d9230 (patch) | |
| tree | 97a407c5ab09abdd8c701b7c3f3747c6002e903a /lldb/packages/Python/lldbsuite/test/lang/cpp | |
| parent | 2b1a416cb52afffe7d045fc0eb48d1d891b549dd (diff) | |
| download | bcm5719-llvm-9625c6fc9ff831376cd4d022a7b1c6c0075d9230.tar.gz bcm5719-llvm-9625c6fc9ff831376cd4d022a7b1c6c0075d9230.zip | |
Remove skipIf<compiler> decorators.
These were supposed to have been removed in a previous patch,
but I missed them.
llvm-svn: 260291
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp')
| -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 4bcb5fb9dda..adfe0873893 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 @@ -8,7 +8,7 @@ class TestCppIncompleteTypes(TestBase): mydir = TestBase.compute_mydir(__file__) @expectedFailureFreeBSD("llvm.org/pr25626 test executable not built correctly on FreeBSD") - @skipIfGcc + @skipIf(compiler="gcc") def test_limit_debug_info(self): self.build() frame = self.get_test_frame('limit') @@ -21,7 +21,7 @@ class TestCppIncompleteTypes(TestBase): self.assertTrue(value_a.IsValid(), "'expr a' results in a valid SBValue object") self.assertTrue(value_a.GetError().Success(), "'expr a' is successful") - @skipIfGcc + @skipIf(compiler="gcc") @skipIfWindows # Clang on Windows asserts in external record layout in this case. def test_partial_limit_debug_info(self): self.build() |

