Remove the @skip("Skip due to deadlock?") decorators. Change the command to

'breakpoint delete 1' from 'breakpoint delete'.  With 'breakpoint delete', the
command interpreter was asking for a confirmation from the user, which there
isn't any.

llvm-svn: 116610
This commit is contained in:
Johnny Chen 2010-10-15 19:29:15 +00:00
parent 7c2a28eba0
commit 7987c6188a
1 changed files with 1 additions and 3 deletions

View File

@ -23,7 +23,6 @@ class FoundationTestCase(TestBase):
self.buildDwarf()
self.break_on_objc_methods()
@unittest2.skip("Skip due to deadlock?")
@unittest2.expectedFailure
# rdar://problem/8542091
# rdar://problem/8492646
@ -32,7 +31,6 @@ class FoundationTestCase(TestBase):
self.buildDsym()
self.data_type_and_expr_objc()
@unittest2.skip("Skip due to deadlock?")
@unittest2.expectedFailure
# rdar://problem/8542091
# rdar://problem/8492646
@ -161,7 +159,7 @@ class FoundationTestCase(TestBase):
# error: 1 errors parsing expression
#
self.runCmd("breakpoint delete")
self.runCmd("breakpoint delete 1")
self.expect("breakpoint set -f main.m -l %d" % self.line,
BREAKPOINT_CREATED,
startstr = "Breakpoint created: 2: file ='main.m', line = %d, locations = 1" %