[Lldb-commits] [lldb] r116610 - /lldb/trunk/test/foundation/TestObjCMethods.py
Johnny Chen
johnny.chen at apple.com
Fri Oct 15 12:29:15 PDT 2010
Author: johnny
Date: Fri Oct 15 14:29:15 2010
New Revision: 116610
URL: http://llvm.org/viewvc/llvm-project?rev=116610&view=rev
Log:
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.
Modified:
lldb/trunk/test/foundation/TestObjCMethods.py
Modified: lldb/trunk/test/foundation/TestObjCMethods.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/foundation/TestObjCMethods.py?rev=116610&r1=116609&r2=116610&view=diff
==============================================================================
--- lldb/trunk/test/foundation/TestObjCMethods.py (original)
+++ lldb/trunk/test/foundation/TestObjCMethods.py Fri Oct 15 14:29:15 2010
@@ -23,7 +23,6 @@
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 @@
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 @@
# 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" %
More information about the lldb-commits
mailing list