From b73e3ca39aab58d3231cac353b919c63987cc65f Mon Sep 17 00:00:00 2001 From: Michal Gorny Date: Wed, 25 Sep 2019 10:18:38 +0000 Subject: [PATCH] [lldb] [test] Add NetBSD to XFAIL list for thread_local test llvm-svn: 372840 --- .../lldbsuite/test/lang/cpp/thread_local/TestThreadLocal.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/thread_local/TestThreadLocal.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/thread_local/TestThreadLocal.py index 9f8ed89375eb..5152c0010d10 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/thread_local/TestThreadLocal.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/thread_local/TestThreadLocal.py @@ -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"]))