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')

lldb/test/API/functionalities/completion/TestCompletion.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@ def test_help_watchpoint_s(self):
291291
"""Test that 'help watchpoint s' completes to 'help watchpoint set '."""
292292
self.complete_from_to('help watchpoint s', 'help watchpoint set ')
293293

294+
@expectedFailureNetBSD
294295
def test_common_complete_watchpoint_ids(self):
295296
subcommands = ['enable', 'disable', 'delete', 'modify', 'ignore']
296297

lldb/test/API/functionalities/dlopen_other_executable/TestDlopenOtherExecutable.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ class TestCase(TestBase):
1414
@skipIfLinux
1515
# freebsd's dlopen ditto
1616
@expectedFailureAll(oslist=["freebsd"])
17+
@expectedFailureNetBSD
1718
@no_debug_info_test
1819
def test(self):
1920
self.build()

lldb/test/API/functionalities/inferior-assert/TestInferiorAssert.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ class AssertingInferiorTestCase(TestBase):
2222
archs=["arm"],
2323
bugnumber="llvm.org/pr25338")
2424
@expectedFailureAll(bugnumber="llvm.org/pr26592", triple='^mips')
25-
@expectedFailureNetBSD
2625
def test_inferior_asserting(self):
2726
"""Test that lldb reliably catches the inferior asserting (command)."""
2827
self.build()
@@ -52,7 +51,6 @@ def test_inferior_asserting_register(self):
5251
triple=no_match(".*-android"),
5352
bugnumber="llvm.org/pr25338")
5453
@expectedFailureAll(bugnumber="llvm.org/pr26592", triple='^mips')
55-
@expectedFailureNetBSD
5654
def test_inferior_asserting_disassemble(self):
5755
"""Test that lldb reliably disassembles frames after asserting (command)."""
5856
self.build()
@@ -76,7 +74,6 @@ def test_inferior_asserting_python(self):
7674
triple=no_match(".*-android"),
7775
bugnumber="llvm.org/pr25338")
7876
@expectedFailureAll(bugnumber="llvm.org/pr26592", triple='^mips')
79-
@expectedFailureNetBSD
8077
def test_inferior_asserting_expr(self):
8178
"""Test that the lldb expression interpreter can read from the inferior after asserting (command)."""
8279
self.build()
@@ -91,7 +88,6 @@ def test_inferior_asserting_expr(self):
9188
triple=no_match(".*-android"),
9289
bugnumber="llvm.org/pr25338")
9390
@expectedFailureAll(bugnumber="llvm.org/pr26592", triple='^mips')
94-
@expectedFailureNetBSD
9591
def test_inferior_asserting_step(self):
9692
"""Test that lldb functions correctly after stepping through a call to assert()."""
9793
self.build()

lldb/test/API/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferiorStep.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ def test_recursive_inferior_crashing_step(self):
2020

2121
@skipIfTargetAndroid() # debuggerd interferes with this test on Android
2222
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778")
23+
@expectedFailureNetBSD
2324
def test_recursive_inferior_crashing_step_after_break(self):
2425
"""Test that lldb functions correctly after stepping through a crash."""
2526
self.build()

lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentBreakpointDelayBreakpointOneSignal.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ class ConcurrentBreakpointDelayBreakpointOneSignal(ConcurrentEventsBase):
1313

1414
# Atomic sequences are not supported yet for MIPS in LLDB.
1515
@skipIf(triple='^mips')
16-
@expectedFailureNetBSD
1716
def test(self):
1817
"""Test two threads that trigger a breakpoint (one with a 1 second delay) and one signal thread. """
1918
self.build(dictionary=self.getBuildFlags())

lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentSignalDelayBreak.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class ConcurrentSignalDelayBreak(ConcurrentEventsBase):
1313

1414
# Atomic sequences are not supported yet for MIPS in LLDB.
1515
@skipIf(triple='^mips')
16-
@expectedFailureNetBSD
16+
@expectedFlakeyNetBSD
1717
def test(self):
1818
"""Test signal and a (1 second delay) breakpoint in multiple threads."""
1919
self.build(dictionary=self.getBuildFlags())

lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneDelaySignal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class ConcurrentTwoBreakpointsOneDelaySignal(ConcurrentEventsBase):
1313

1414
# Atomic sequences are not supported yet for MIPS in LLDB.
1515
@skipIf(triple='^mips')
16-
@expectedFailureNetBSD
16+
@expectedFlakeyNetBSD
1717
def test(self):
1818
"""Test two threads that trigger a breakpoint and one (1 second delay) signal thread. """
1919
self.build(dictionary=self.getBuildFlags())

lldb/test/API/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneSignal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class ConcurrentTwoBreakpointsOneSignal(ConcurrentEventsBase):
1313

1414
# Atomic sequences are not supported yet for MIPS in LLDB.
1515
@skipIf(triple='^mips')
16-
@expectedFailureNetBSD
16+
@expectedFlakeyNetBSD
1717
def test(self):
1818
"""Test two threads that trigger a breakpoint and one signal thread. """
1919
self.build(dictionary=self.getBuildFlags())

lldb/test/API/functionalities/thread/exit_during_expression/TestExitDuringExpression.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,14 @@ class TestExitDuringExpression(TestBase):
1616

1717
@skipIfWindows
1818
@expectedFailureAll(oslist=["freebsd"], bugnumber="llvm.org/pr48414")
19+
@expectedFailureNetBSD
1920
def test_exit_before_one_thread_unwind(self):
2021
"""Test the case where we exit within the one thread timeout"""
2122
self.exiting_expression_test(True, True)
2223

2324
@skipIfWindows
2425
@expectedFailureAll(oslist=["freebsd"], bugnumber="llvm.org/pr48414")
26+
@expectedFailureNetBSD
2527
def test_exit_before_one_thread_no_unwind(self):
2628
"""Test the case where we exit within the one thread timeout"""
2729
self.exiting_expression_test(True, False)

lldb/test/API/functionalities/thread/state_after_expression/TestStateAfterExpression.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ class TestStopReasonAfterExpression(TestBase):
1616

1717
@skipIfWindows
1818
@expectedFailureAll(oslist=["freebsd"], bugnumber="llvm.org/pr48415")
19+
@expectedFlakeyNetBSD
1920
def test_thread_state_after_expr(self):
2021
self.build()
2122
self.main_source_file = lldb.SBFileSpec("main.cpp")

lldb/test/API/functionalities/thread/thread_specific_break_plus_condition/TestThreadSpecificBpPlusCondition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ThreadSpecificBreakPlusConditionTestCase(TestBase):
2020
# hits break in another thread in testrun
2121
@add_test_categories(['pyapi'])
2222
@expectedFailureAll(oslist=['ios', 'watchos', 'tvos', 'bridgeos'], archs=['armv7', 'armv7k'], bugnumber='rdar://problem/34563348') # Two threads seem to end up with the same my_value when built for armv7.
23-
@expectedFailureNetBSD
23+
@expectedFlakeyNetBSD
2424
def test_python(self):
2525
"""Test that we obey thread conditioned breakpoints."""
2626
self.build()

lldb/test/API/functionalities/unwind/noreturn/TestNoreturnUnwind.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ class NoreturnUnwind(TestBase):
1818
# clang does not preserve LR in noreturn functions, making unwinding impossible
1919
@skipIf(compiler="clang", archs=['arm'], oslist=['linux'])
2020
@expectedFailureAll(bugnumber="llvm.org/pr33452", triple='^mips')
21-
@expectedFailureNetBSD
2221
def test(self):
2322
"""Test that we can backtrace correctly with 'noreturn' functions on the stack"""
2423
self.build()

lldb/test/API/lang/c/conflicting-symbol/TestConflictingSymbol.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ def setUp(self):
2020

2121
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24489")
2222
@expectedFailureAll(oslist=["freebsd"], bugnumber="llvm.org/pr48416")
23-
@expectedFailureNetBSD
2423
def test_conflicting_symbols(self):
2524
self.build()
2625
exe = self.getBuildArtifact("a.out")

lldb/test/API/lang/c/const_variables/TestConstVariables.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ class ConstVariableTestCase(TestBase):
1717
@expectedFailureAll(
1818
oslist=["windows"],
1919
bugnumber="llvm.org/pr24489: Name lookup not working correctly on Windows")
20-
@expectedFailureNetBSD
2120
def test_and_run_command(self):
2221
"""Test interpreted and JITted expressions on constant values."""
2322
self.build()

lldb/test/API/lang/c/function_types/TestFunctionTypes.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ def test(self):
4747
])
4848

4949
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr21765")
50-
@expectedFailureNetBSD
5150
def test_pointers(self):
5251
"""Test that a function pointer to 'printf' works and can be called."""
5352
self.build()

lldb/test/API/lang/c/global_variables/TestGlobalVariables.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ def test_without_process(self):
3737
substrs=['42'])
3838

3939
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24764")
40-
@expectedFailureNetBSD
4140
def test_c_global_variables(self):
4241
"""Test 'frame variable --scope --no-args' which omits args and shows scopes."""
4342
self.build()

lldb/test/API/lang/c/shared_lib/TestSharedLib.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,10 @@ def common_test_expr(self, preload_symbols):
3434
"expression GetMeASubFoo(my_foo_ptr)",
3535
startstr="(sub_foo *) $")
3636

37-
@expectedFailureNetBSD
3837
def test_expr(self):
3938
"""Test that types work when defined in a shared library and forward-declared in the main executable"""
4039
self.common_test_expr(True)
4140

42-
@expectedFailureNetBSD
4341
def test_expr_no_preload(self):
4442
"""Test that types work when defined in a shared library and forward-declared in the main executable, but with preloading disabled"""
4543
self.common_test_expr(False)

lldb/test/API/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ def setUp(self):
2424
@expectedFailureAll(
2525
oslist=["windows"],
2626
bugnumber="llvm.org/pr24538, clang-cl does not support throw or catch")
27-
@expectedFailureNetBSD
2827
def test(self):
2928
"""Test lldb exception breakpoint command for CPP."""
3029
self.build()

lldb/test/API/lang/cpp/namespace_definitions/TestNamespaceDefinitions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ class NamespaceDefinitionsTestCase(TestBase):
2323
bugnumber="llvm.org/pr28948",
2424
oslist=['linux'], compiler="gcc", archs=['arm','aarch64'])
2525
@expectedFailureAll(oslist=["windows"])
26-
@expectedFailureNetBSD
2726
def test_expr(self):
2827
self.build()
2928
self.common_setup()

lldb/test/API/lang/cpp/stl/TestStdCXXDisassembly.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ class StdCXXDisassembleTestCase(TestBase):
1717
mydir = TestBase.compute_mydir(__file__)
1818

1919
@skipIfWindows
20-
@expectedFailureNetBSD
2120
def test_stdcxx_disasm(self):
2221
"""Do 'disassemble' on each and every 'Code' symbol entry from the std c++ lib."""
2322
self.build()

lldb/test/API/lang/cpp/this/TestCPPThis.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ class CPPThisTestCase(TestBase):
2121
@expectedFailureAll(
2222
oslist=["windows"],
2323
bugnumber="llvm.org/pr24489: Name lookup not working correctly on Windows")
24-
@expectedFailureNetBSD
2524
def test_with_run_command(self):
2625
"""Test that the appropriate member variables are available when stopped in C++ static, inline, and const methods"""
2726
self.build()

lldb/test/API/python_api/event/TestEvents.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def run(self):
203203
bugnumber="llvm.org/pr23617 Flaky, fails ~1/10 cases")
204204
@skipIfWindows # This is flakey on Windows AND when it fails, it hangs: llvm.org/pr38373
205205
@expectedFailureAll(oslist=["freebsd"], bugnumber="llvm.org/pr48417")
206-
@expectedFlakeyNetBSD
206+
@expectedFailureNetBSD
207207
def test_add_listener_to_broadcaster(self):
208208
"""Exercise some SBBroadcaster APIs."""
209209
self.build()

lldb/test/API/python_api/lldbutil/iter/TestRegistersIterator.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ def setUp(self):
2323
'main.cpp', '// Set break point at this line.')
2424

2525
@add_test_categories(['pyapi'])
26+
@expectedFailureNetBSD
2627
def test_iter_registers(self):
2728
"""Test iterator works correctly for lldbutil.iter_registers()."""
2829
self.build()

lldb/test/API/python_api/thread/TestThreadAPI.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ def test_run_to_address(self):
4141
@add_test_categories(['pyapi'])
4242
@expectedFailureAll(oslist=["linux"], archs=['arm'], bugnumber="llvm.org/pr45892")
4343
@expectedFailureAll(oslist=["windows"])
44-
@expectedFailureNetBSD
4544
def test_step_out_of_malloc_into_function_b(self):
4645
"""Test Python SBThread.StepOut() API to step out of a malloc call where the call site is at function b()."""
4746
# We build a different executable than the default build() does.

lldb/test/API/tools/lldb-server/TestGdbRemote_vContThreads.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def test_signal_one_thread_debugserver(self):
5252
self.signal_one_thread()
5353

5454
@skipUnlessPlatform(["netbsd"])
55+
@expectedFailureNetBSD
5556
@llgs_test
5657
def test_signal_one_thread_llgs(self):
5758
self.build()
@@ -79,6 +80,7 @@ def test_signal_all_threads_debugserver(self):
7980
self.signal_all_threads()
8081

8182
@skipUnlessPlatform(["netbsd"])
83+
@expectedFailureNetBSD
8284
@llgs_test
8385
def test_signal_all_threads_llgs(self):
8486
self.build()

lldb/test/API/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ class TestVSCode_setExceptionBreakpoints(
1717
mydir = TestBase.compute_mydir(__file__)
1818

1919
@skipIfWindows
20-
@expectedFailureNetBSD
2120
@skipIfRemote
2221
def test_functionality(self):
2322
'''Tests setting and clearing exception breakpoints.

lldb/test/API/tools/lldb-vscode/disconnect/TestVSCode_disconnect.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ def test_launch(self):
5151
@skipIfDarwin
5252
@skipIfWindows
5353
@skipIfRemote
54+
@expectedFailureNetBSD
5455
def test_attach(self):
5556
"""
5657
This test attaches to a process that creates a file. We attach and disconnect

lldb/test/Shell/Recognizer/assert.test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# XFAIL: target-arm && linux-gnu
22
# XFAIL: system-freebsd
3+
# XFAIL: system-netbsd
34
# UNSUPPORTED: system-windows
45
# RUN: %clang_host -g -O0 %S/Inputs/assert.c -o %t.out
56
# RUN: %lldb -b -s %s %t.out | FileCheck %s

lldb/test/Shell/Reproducer/Functionalities/TestExpressionEvaluation.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# UNSUPPORTED: system-freebsd
2-
# XFAIL: system-netbsd
2+
# UNSUPPORTED: system-netbsd
33

44
# Flaky
55
# UNSUPPORTED: system-linux

lldb/test/Shell/ScriptInterpreter/Lua/watchpoint_callback.test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# REQUIRES: lua
2+
# XFAIL: system-netbsd
23
# RUN: echo "int main() { return 0; }" | %clang_host -x c - -o %t
34
# RUN: %lldb -s %s --script-language lua %t 2>&1 | FileCheck %s
45
b main

0 commit comments

Comments
 (0)