forked from OSchip/llvm-project
Fix classifications on two concurrent event tests
I have classified one as a watchpoint test even though it wasn't and vice versa. Fix that. llvm-svn: 317319
This commit is contained in:
parent
063bed9baf
commit
09bdfb32ef
|
@ -15,7 +15,6 @@ class ConcurrentBreakpointDelayBreakpointOneSignal(ConcurrentEventsBase):
|
|||
@skipIfFreeBSD # timing out on buildbot
|
||||
# Atomic sequences are not supported yet for MIPS in LLDB.
|
||||
@skipIf(triple='^mips')
|
||||
@add_test_categories(["watchpoint"])
|
||||
def test(self):
|
||||
"""Test two threads that trigger a breakpoint (one with a 1 second delay) and one signal thread. """
|
||||
self.build(dictionary=self.getBuildFlags())
|
||||
|
|
|
@ -17,6 +17,7 @@ class ConcurrentBreakpointsDelayedBreakpointOneWatchpoint(
|
|||
@skipIfRemoteDueToDeadlock
|
||||
# Atomic sequences are not supported yet for MIPS in LLDB.
|
||||
@skipIf(triple='^mips')
|
||||
@add_test_categories(["watchpoint"])
|
||||
def test(self):
|
||||
"""Test a breakpoint, a delayed breakpoint, and one watchpoint thread. """
|
||||
self.build(dictionary=self.getBuildFlags())
|
||||
|
|
Loading…
Reference in New Issue