summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py35
1 files changed, 0 insertions, 35 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py b/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py
index 3b0d102c6cb..6861c4abcdc 100644
--- a/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py
+++ b/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py
@@ -27,9 +27,6 @@ class ExitDuringBreakpointTestCase(TestBase):
oslist=["linux"],
bugnumber="llvm.org/pr15824 thread states not properly maintained")
@expectedFailureAll(
- oslist=lldbplatformutil.getDarwinOSTriples(),
- bugnumber="llvm.org/pr15824 thread states not properly maintained")
- @expectedFailureAll(
oslist=["freebsd"],
bugnumber="llvm.org/pr18190 thread states not properly maintained")
@expectedFailureAll(
@@ -45,14 +42,6 @@ class ExitDuringBreakpointTestCase(TestBase):
lldbutil.run_break_set_by_file_and_line(
self, "main.cpp", self.breakpoint, num_expected_locations=1)
- # The breakpoint list should show 1 location.
- self.expect(
- "breakpoint list -f",
- "Breakpoint location shown correctly",
- substrs=[
- "1: file = 'main.cpp', line = %d, locations = 1" %
- self.breakpoint])
-
# Run the program.
self.runCmd("run", RUN_SUCCEEDED)
@@ -77,30 +66,6 @@ class ExitDuringBreakpointTestCase(TestBase):
num_threads >= 5,
'Number of expected threads and actual threads do not match.')
- # Get the thread objects
- thread1 = process.GetThreadAtIndex(0)
- thread2 = process.GetThreadAtIndex(1)
- thread3 = process.GetThreadAtIndex(2)
- thread4 = process.GetThreadAtIndex(3)
- thread5 = process.GetThreadAtIndex(4)
-
- # Make sure all threads are stopped
- self.assertTrue(
- thread1.IsStopped(),
- "Thread 1 didn't stop during breakpoint")
- self.assertTrue(
- thread2.IsStopped(),
- "Thread 2 didn't stop during breakpoint")
- self.assertTrue(
- thread3.IsStopped(),
- "Thread 3 didn't stop during breakpoint")
- self.assertTrue(
- thread4.IsStopped(),
- "Thread 4 didn't stop during breakpoint")
- self.assertTrue(
- thread5.IsStopped(),
- "Thread 5 didn't stop during breakpoint")
-
# Run to completion
self.runCmd("continue")
OpenPOWER on IntegriCloud