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/c/anonymous | |
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/c/anonymous')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/anonymous/TestAnonymous.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/anonymous/TestAnonymous.py b/lldb/packages/Python/lldbsuite/test/lang/c/anonymous/TestAnonymous.py index c6dc4961c0c..2d1367c6ace 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/anonymous/TestAnonymous.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/anonymous/TestAnonymous.py @@ -14,7 +14,7 @@ class AnonymousTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) - @skipIfIcc # llvm.org/pr15036: LLDB generates an incorrect AST layout for an anonymous struct when DWARF is generated by ICC + @skipIf(compiler="icc", bugnumber="llvm.org/pr15036: LLDB generates an incorrect AST layout for an anonymous struct when DWARF is generated by ICC") def test_expr_nest(self): self.build() self.common_setup(self.line0) @@ -37,7 +37,7 @@ class AnonymousTestCase(TestBase): self.expect("expression c->grandchild.b", VARIABLES_DISPLAYED_CORRECTLY, substrs = ["= 2"]) - @skipIfIcc # llvm.org/pr15036: This particular regression was introduced by r181498 + @skipIf(compiler="icc", bugnumber="llvm.org/pr15036: This particular regression was introduced by r181498") def test_expr_grandchild(self): self.build() self.common_setup(self.line2) |