diff options
author | Michal Gorny <mgorny@gentoo.org> | 2019-09-25 10:18:38 +0000 |
---|---|---|
committer | Michal Gorny <mgorny@gentoo.org> | 2019-09-25 10:18:38 +0000 |
commit | b73e3ca39aab58d3231cac353b919c63987cc65f (patch) | |
tree | f0eac5579d2bd119d6dc3e49e6897c8b0045941b /lldb/packages/Python/lldbsuite | |
parent | 10d10102a44318972a985385f6156e72afbfb513 (diff) | |
download | bcm5719-llvm-b73e3ca39aab58d3231cac353b919c63987cc65f.tar.gz bcm5719-llvm-b73e3ca39aab58d3231cac353b919c63987cc65f.zip |
[lldb] [test] Add NetBSD to XFAIL list for thread_local test
llvm-svn: 372840
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/thread_local/TestThreadLocal.py | 3 |
1 files changed, 2 insertions, 1 deletions
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 9f8ed89375e..5152c0010d1 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"])) |