[Lldb-commits] [lldb] r323736 - Skip TestWithModuleDebugging on i386 linux (pr36146)

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Tue Jan 30 01:39:22 PST 2018


Author: labath
Date: Tue Jan 30 01:39:22 2018
New Revision: 323736

URL: http://llvm.org/viewvc/llvm-project?rev=323736&view=rev
Log:
Skip TestWithModuleDebugging on i386 linux (pr36146)

It fails due to an assertion (if these are enabled).

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/gmodules/TestWithModuleDebugging.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/gmodules/TestWithModuleDebugging.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/gmodules/TestWithModuleDebugging.py?rev=323736&r1=323735&r2=323736&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/gmodules/TestWithModuleDebugging.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/gmodules/TestWithModuleDebugging.py Tue Jan 30 01:39:22 2018
@@ -9,6 +9,7 @@ class TestWithGmodulesDebugInfo(TestBase
 
     mydir = TestBase.compute_mydir(__file__)
 
+    @skipIf(bugnumber="llvm.org/pr36146", oslist=["linux"], archs=["i386"])
     @add_test_categories(["gmodules"])
     def test_specialized_typedef_from_pch(self):
         self.build()




More information about the lldb-commits mailing list