Skip to content

Commit c30c236

Browse files
committed
[lldb/Reproducers] Skip tests relying on timeouts
The reproducer don't model timeouts so tests that rely on them end up with unexpected packets during replay. Skip them until we can handle this scenario.
1 parent fe9d844 commit c30c236

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

lldb/test/API/commands/expression/no-deadlock/TestExprDoesntBlock.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class ExprDoesntDeadlockTestCase(TestBase):
1717

1818
@expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr17946')
1919
@add_test_categories(["basic_process"])
20+
@skipIfReproducer # Timeouts are not currently modeled.
2021
def test_with_run_command(self):
2122
"""Test that expr will time out and allow other threads to run if it blocks."""
2223
self.build()

lldb/test/API/commands/expression/timeout/TestCallWithTimeout.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ def setUp(self):
2626
oslist=[
2727
"windows"],
2828
bugnumber="llvm.org/pr21765")
29+
@skipIfReproducer # Timeouts are not currently modeled.
2930
def test(self):
3031
"""Test calling std::String member function."""
3132
self.build()

0 commit comments

Comments
 (0)