[Lldb-commits] [lldb] r355750 - [lldb] [test] Skip broken NetBSD core test

Michal Gorny via lldb-commits lldb-commits at lists.llvm.org
Fri Mar 8 14:41:15 PST 2019


Author: mgorny
Date: Fri Mar  8 14:41:14 2019
New Revision: 355750

URL: http://llvm.org/viewvc/llvm-project?rev=355750&view=rev
Log:
[lldb] [test] Skip broken NetBSD core test

Apparently the problem is harder than anticipated.  Skip the test for
now to fix buildbots.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/TestNetBSDCore.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/TestNetBSDCore.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/TestNetBSDCore.py?rev=355750&r1=355749&r2=355750&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/TestNetBSDCore.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/postmortem/netbsd-core/TestNetBSDCore.py Fri Mar  8 14:41:14 2019
@@ -219,6 +219,7 @@ class NetBSD2LWPProcessSigCoreTestCase(N
         self.assertEqual(thread.GetStopReasonDataCount(), 1)
         self.assertEqual(thread.GetStopReasonDataAtIndex(0), signal.SIGSEGV)
 
+    @skipIf  # TODO: fails with non-netbsd libc
     @skipIfLLVMTargetMissing("X86")
     def test_amd64(self):
         """Test double-threaded amd64 core dump where process is signalled."""




More information about the lldb-commits mailing list