[Lldb-commits] [lldb] r372840 - [lldb] [test] Add NetBSD to XFAIL list for thread_local test

Michal Gorny via lldb-commits lldb-commits at lists.llvm.org
Wed Sep 25 03:18:38 PDT 2019


Author: mgorny
Date: Wed Sep 25 03:18:38 2019
New Revision: 372840

URL: http://llvm.org/viewvc/llvm-project?rev=372840&view=rev
Log:
[lldb] [test] Add NetBSD to XFAIL list for thread_local test

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/thread_local/TestThreadLocal.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/thread_local/TestThreadLocal.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/thread_local/TestThreadLocal.py?rev=372840&r1=372839&r2=372840&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/thread_local/TestThreadLocal.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/thread_local/TestThreadLocal.py Wed Sep 25 03:18:38 2019
@@ -2,4 +2,5 @@ from lldbsuite.test import lldbinline
 from lldbsuite.test import decorators
 
 lldbinline.MakeInlineTest(__file__, globals(),
-                          lldbinline.expectedFailureAll(oslist=["windows", "linux"]))
+                          lldbinline.expectedFailureAll(oslist=[
+                              "windows", "linux", "netbsd"]))




More information about the lldb-commits mailing list