Skip to content

Commit 9956233

Browse files
committed
[lldb] [test] Update test status for NetBSD
1 parent 41ab45d commit 9956233

File tree

40 files changed

+22
-32
lines changed

40 files changed

+22
-32
lines changed

lldb/test/API/api/multiple-targets/TestMultipleTargets.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class TestMultipleTargets(TestBase):
2121
@expectedFailureAll(
2222
oslist=["windows"],
2323
bugnumber="llvm.org/pr20282")
24+
@expectedFlakeyNetBSD
2425
def test_multiple_targets(self):
2526
env = {self.dylibPath: self.getLLDBLibraryEnvVal()}
2627

lldb/test/API/commands/expression/call-restarts/TestCallThatRestarts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def setUp(self):
2525
@skipIfDarwin # llvm.org/pr19246: intermittent failure
2626
@skipIfWindows # Test relies on signals, unsupported on Windows
2727
@expectedFlakeyAndroid(bugnumber="llvm.org/pr19246")
28-
@expectedFailureNetBSD
28+
@expectedFlakeyNetBSD
2929
def test(self):
3030
"""Test calling function that hits a signal and restarts."""
3131
self.build()

lldb/test/API/commands/expression/ir-interpreter/TestIRInterpreter.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ def build_and_run(self):
4444
@expectedFailureAll(
4545
oslist=['windows'],
4646
bugnumber="http://llvm.org/pr21765")
47-
@expectedFailureNetBSD
4847
def test_ir_interpreter(self):
4948
self.build_and_run()
5049

lldb/test/API/commands/expression/radar_9531204/TestPrintfAfterUp.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ class Radar9531204TestCase(TestBase):
1515
mydir = TestBase.compute_mydir(__file__)
1616

1717
# rdar://problem/9531204
18-
@expectedFailureNetBSD
1918
def test_expr_commands(self):
2019
"""The evaluating printf(...) after break stop and then up a stack frame."""
2120
self.build()

lldb/test/API/commands/expression/save_jit_objects/TestSaveJITObjects.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ def cleanJITFiles(self):
2424
return
2525

2626
@expectedFailureAll(oslist=["windows"])
27-
@expectedFailureNetBSD
2827
def test_save_jit_objects(self):
2928
self.build()
3029
os.chdir(self.getBuildDir())

lldb/test/API/commands/expression/test/TestExprs.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@ def test_evaluate_expression_python(self):
177177
# rdar://problem/8686536
178178
# CommandInterpreter::HandleCommand is stripping \'s from input for
179179
# WantsRawCommand commands
180-
@expectedFailureNetBSD
181180
def test_expr_commands_can_handle_quotes(self):
182181
"""Throw some expression commands with quotes at lldb."""
183182
self.build()

lldb/test/API/commands/gui/viewlarge/TestGuiViewLarge.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ class GuiViewLargeCommandTest(PExpectTest):
1616
@skipIfAsan
1717
@skipIfCursesSupportMissing
1818
@skipIfRemote # "run" command will not work correctly for remote debug
19+
@expectedFailureNetBSD
1920
def test_gui(self):
2021
self.build()
2122

lldb/test/API/commands/process/attach/TestProcessAttach.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ def test_attach_to_process_by_name(self):
8484
process = target.GetProcess()
8585
self.assertTrue(process, PROCESS_IS_VALID)
8686

87+
@expectedFailureNetBSD
8788
def test_attach_to_process_by_id_correct_executable_offset(self):
8889
"""
8990
Test that after attaching to a process the executable offset

lldb/test/API/functionalities/breakpoint/cpp_exception/TestCPPExceptionBreakpoint.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,13 @@ class TestCPPExceptionBreakpoint (TestBase):
1717

1818
@add_test_categories(['pyapi'])
1919
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24538")
20-
@expectedFailureNetBSD
2120
def test_cpp_exception_breakpoint(self):
2221
"""Test setting and hitting the C++ exception breakpoint."""
2322
self.build()
2423
self.do_cpp_exception_bkpt()
2524

2625
@add_test_categories(['pyapi'])
2726
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24538")
28-
@expectedFailureNetBSD
2927
def test_dummy_target_cpp_exception_breakpoint(self):
3028
"""Test setting and hitting the C++ exception breakpoint from dummy target."""
3129
self.build()

lldb/test/API/functionalities/breakpoint/global_constructor/TestBreakpointInGlobalConstructor.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ class TestBreakpointInGlobalConstructors(TestBase):
1515
mydir = TestBase.compute_mydir(__file__)
1616
NO_DEBUG_INFO_TESTCASE = True
1717

18-
@expectedFailureNetBSD
1918
def test(self):
2019
self.build()
2120
self.line_foo = line_number('foo.cpp', '// !BR_foo')

0 commit comments

Comments
 (0)