[lldb] [test] Mark 'reenabled' tests XFAIL on NetBSD
authorMichal Gorny <mgorny@gentoo.org>
Wed, 4 Sep 2019 06:36:53 +0000 (06:36 +0000)
committerMichal Gorny <mgorny@gentoo.org>
Wed, 4 Sep 2019 06:36:53 +0000 (06:36 +0000)
llvm-svn: 370842

lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyBreakpoints.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyCrash.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManySignals.py
lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyWatchpoints.py
lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestStdCXXDisassembly.py

index bb1579f..9814c0b 100644 (file)
@@ -14,6 +14,7 @@ class ConcurrentManyBreakpoints(ConcurrentEventsBase):
 
     # Atomic sequences are not supported yet for MIPS in LLDB.
     @skipIf(triple='^mips')
+    @expectedFailureNetBSD
     def test(self):
         """Test 100 breakpoints from 100 threads."""
         self.build(dictionary=self.getBuildFlags())
index 597129c..c4e8f11 100644 (file)
@@ -14,6 +14,7 @@ class ConcurrentManyCrash(ConcurrentEventsBase):
 
     # Atomic sequences are not supported yet for MIPS in LLDB.
     @skipIf(triple='^mips')
+    @expectedFailureNetBSD
     def test(self):
         """Test 100 threads that cause a segfault."""
         self.build(dictionary=self.getBuildFlags())
index de85ae8..ca179cf 100644 (file)
@@ -16,6 +16,7 @@ class ConcurrentManySignals(ConcurrentEventsBase):
     @skipIf(triple='^mips')
     # This test is flaky on Darwin.
     @skipIfDarwin
+    @expectedFailureNetBSD
     def test(self):
         """Test 100 signals from 100 threads."""
         self.build(dictionary=self.getBuildFlags())
index b1717cc..25a40d2 100644 (file)
@@ -14,6 +14,7 @@ class ConcurrentManyWatchpoints(ConcurrentEventsBase):
 
     # Atomic sequences are not supported yet for MIPS in LLDB.
     @skipIf(triple='^mips')
+    @expectedFailureNetBSD
     @add_test_categories(["watchpoint"])
     def test(self):
         """Test 100 watchpoints from 100 threads."""
index 7100838..49aa16c 100644 (file)
@@ -23,6 +23,7 @@ class StdCXXDisassembleTestCase(TestBase):
         self.line = line_number('main.cpp', '// Set break point at this line.')
 
     @skipIfWindows
+    @expectedFailureNetBSD
     def test_stdcxx_disasm(self):
         """Do 'disassemble' on each and every 'Code' symbol entry from the std c++ lib."""
         self.build()