[Lldb-commits] [lldb] r181512 - Skipping a test that asserts with gcc and icc to allow the test suite to run to completion on the gcc buildbot.
Ashok Thirumurthi
ashok.thirumurthi at intel.com
Thu May 9 07:46:01 PDT 2013
Author: athirumu
Date: Thu May 9 09:46:01 2013
New Revision: 181512
URL: http://llvm.org/viewvc/llvm-project?rev=181512&view=rev
Log:
Skipping a test that asserts with gcc and icc to allow the test suite to run to completion on the gcc buildbot.
Modified:
lldb/trunk/test/lang/c/anonymous/TestAnonymous.py
Modified: lldb/trunk/test/lang/c/anonymous/TestAnonymous.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/anonymous/TestAnonymous.py?rev=181512&r1=181511&r2=181512&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/anonymous/TestAnonymous.py (original)
+++ lldb/trunk/test/lang/c/anonymous/TestAnonymous.py Thu May 9 09:46:01 2013
@@ -49,8 +49,8 @@ class AnonymousTestCase(TestBase):
self.buildDwarf()
self.expr_child()
- @expectedFailureGcc # llvm.org/pr15036: LLDB generates an incorrect AST layout for an anonymous struct when DWARF is generated by GCC
- @expectedFailureIcc # llvm.org/pr15036: LLDB generates an incorrect AST layout for an anonymous struct when DWARF is generated by ICC
+ @skipIfGcc # llvm.org/pr15036: This particular regression was introduced by r181498
+ @skipIfIcc # llvm.org/pr15036: This particular regression was introduced by r181498
@dwarf_test
def test_expr_grandchild_with_dwarf(self):
self.buildDwarf()
More information about the lldb-commits
mailing list