[Lldb-commits] [lldb] r154222 - /lldb/trunk/test/lang/objc/foundation/TestObjCMethods2.py
Sean Callanan
scallanan at apple.com
Fri Apr 6 16:02:44 PDT 2012
Author: spyffe
Date: Fri Apr 6 18:02:44 2012
New Revision: 154222
URL: http://llvm.org/viewvc/llvm-project?rev=154222&view=rev
Log:
Changed some tabs to spaces to make Python like
this file.
Modified:
lldb/trunk/test/lang/objc/foundation/TestObjCMethods2.py
Modified: lldb/trunk/test/lang/objc/foundation/TestObjCMethods2.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/objc/foundation/TestObjCMethods2.py?rev=154222&r1=154221&r2=154222&view=diff
==============================================================================
--- lldb/trunk/test/lang/objc/foundation/TestObjCMethods2.py (original)
+++ lldb/trunk/test/lang/objc/foundation/TestObjCMethods2.py Fri Apr 6 18:02:44 2012
@@ -61,29 +61,29 @@
self.MyString_dump()
@dsym_test
- def test_NSError_po_with_dsym(self):
- """Test that po of the result of an unknown method doesn't require a cast."""
- self.buildDsym()
- self.NSError_po()
+ def test_NSError_po_with_dsym(self):
+ """Test that po of the result of an unknown method doesn't require a cast."""
+ self.buildDsym()
+ self.NSError_po()
@dwarf_test
- def test_NSError_po_with_dwarf(self):
- """Test that po of the result of an unknown method doesn't require a cast."""
- self.buildDsym()
- self.NSError_po()
-
+ def test_NSError_po_with_dwarf(self):
+ """Test that po of the result of an unknown method doesn't require a cast."""
+ self.buildDsym()
+ self.NSError_po()
+
@dsym_test
- def test_NSError_p_with_dsym(self):
- """Test that p of the result of an unknown method does require a cast."""
- self.buildDsym()
- self.NSError_p()
+ def test_NSError_p_with_dsym(self):
+ """Test that p of the result of an unknown method does require a cast."""
+ self.buildDsym()
+ self.NSError_p()
@dwarf_test
- def test_NSError_p_with_dwarf(self):
- """Test that p of the result of an unknown method does require a cast."""
- self.buildDsym()
- self.NSError_p()
-
+ def test_NSError_p_with_dwarf(self):
+ """Test that p of the result of an unknown method does require a cast."""
+ self.buildDsym()
+ self.NSError_p()
+
def setUp(self):
# Call super's setUp().
TestBase.setUp(self)
@@ -209,9 +209,9 @@
patterns = ["\(MyString\) \$.* = ", "\(MyBase\)", "\(NSObject\)", "\(Class\)"])
self.runCmd("process continue")
- def NSError_po(self):
- """Test that po of the result of an unknown method doesn't require a cast."""
- exe = os.path.join(os.getcwd(), "a.out")
+ def NSError_po(self):
+ """Test that po of the result of an unknown method doesn't require a cast."""
+ exe = os.path.join(os.getcwd(), "a.out")
self.runCmd("file " + exe, CURRENT_EXECUTABLE_SET)
line = self.lines[4]
@@ -226,9 +226,9 @@
patterns = ["\(id\) \$.* = ", "Error Domain=Hello", "Code=35", "be completed."])
self.runCmd("process continue")
- def NSError_p(self):
- """Test that p of the result of an unknown method does require a cast."""
- exe = os.path.join(os.getcwd(), "a.out")
+ def NSError_p(self):
+ """Test that p of the result of an unknown method does require a cast."""
+ exe = os.path.join(os.getcwd(), "a.out")
self.runCmd("file " + exe, CURRENT_EXECUTABLE_SET)
line = self.lines[4]
More information about the lldb-commits
mailing list