Skip to content

Commit

Permalink
[lldb] [test] Mark 'reenabled' tests XFAIL on NetBSD
Browse files Browse the repository at this point in the history
llvm-svn: 370842
  • Loading branch information
mgorny committed Sep 4, 2019
1 parent 63cec59 commit 37f91c3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
Expand Up @@ -14,6 +14,7 @@ class ConcurrentManyBreakpoints(ConcurrentEventsBase):


# Atomic sequences are not supported yet for MIPS in LLDB. # Atomic sequences are not supported yet for MIPS in LLDB.
@skipIf(triple='^mips') @skipIf(triple='^mips')
@expectedFailureNetBSD
def test(self): def test(self):
"""Test 100 breakpoints from 100 threads.""" """Test 100 breakpoints from 100 threads."""
self.build(dictionary=self.getBuildFlags()) self.build(dictionary=self.getBuildFlags())
Expand Down
Expand Up @@ -14,6 +14,7 @@ class ConcurrentManyCrash(ConcurrentEventsBase):


# Atomic sequences are not supported yet for MIPS in LLDB. # Atomic sequences are not supported yet for MIPS in LLDB.
@skipIf(triple='^mips') @skipIf(triple='^mips')
@expectedFailureNetBSD
def test(self): def test(self):
"""Test 100 threads that cause a segfault.""" """Test 100 threads that cause a segfault."""
self.build(dictionary=self.getBuildFlags()) self.build(dictionary=self.getBuildFlags())
Expand Down
Expand Up @@ -16,6 +16,7 @@ class ConcurrentManySignals(ConcurrentEventsBase):
@skipIf(triple='^mips') @skipIf(triple='^mips')
# This test is flaky on Darwin. # This test is flaky on Darwin.
@skipIfDarwin @skipIfDarwin
@expectedFailureNetBSD
def test(self): def test(self):
"""Test 100 signals from 100 threads.""" """Test 100 signals from 100 threads."""
self.build(dictionary=self.getBuildFlags()) self.build(dictionary=self.getBuildFlags())
Expand Down
Expand Up @@ -14,6 +14,7 @@ class ConcurrentManyWatchpoints(ConcurrentEventsBase):


# Atomic sequences are not supported yet for MIPS in LLDB. # Atomic sequences are not supported yet for MIPS in LLDB.
@skipIf(triple='^mips') @skipIf(triple='^mips')
@expectedFailureNetBSD
@add_test_categories(["watchpoint"]) @add_test_categories(["watchpoint"])
def test(self): def test(self):
"""Test 100 watchpoints from 100 threads.""" """Test 100 watchpoints from 100 threads."""
Expand Down
Expand Up @@ -23,6 +23,7 @@ def setUp(self):
self.line = line_number('main.cpp', '// Set break point at this line.') self.line = line_number('main.cpp', '// Set break point at this line.')


@skipIfWindows @skipIfWindows
@expectedFailureNetBSD
def test_stdcxx_disasm(self): def test_stdcxx_disasm(self):
"""Do 'disassemble' on each and every 'Code' symbol entry from the std c++ lib.""" """Do 'disassemble' on each and every 'Code' symbol entry from the std c++ lib."""
self.build() self.build()
Expand Down

0 comments on commit 37f91c3

Please sign in to comment.