[Lldb-commits] [PATCH] D43705: Fix tabs/spaces in TestUnicodeSymbols.py

Adrian McCarthy via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Feb 23 17:20:36 PST 2018


amccarth created this revision.
amccarth added a reviewer: labath.
Herald added a subscriber: sanjoy.

https://reviews.llvm.org/D43705

Files:
  lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py


Index: lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py
===================================================================
--- lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py
+++ lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py
@@ -10,10 +10,10 @@
 
     def test_union_members(self):
         self.build()
-	spec = lldb.SBModuleSpec()
-	spec.SetFileSpec(lldb.SBFileSpec(self.getBuildArtifact("a.out")))
-	module = lldb.SBModule(spec)
-	self.assertTrue(module.IsValid())
-	mytype = module.FindFirstType("foobár")
-	self.assertTrue(mytype.IsValid())
-	self.assertTrue(mytype.IsPointerType())
+        spec = lldb.SBModuleSpec()
+        spec.SetFileSpec(lldb.SBFileSpec(self.getBuildArtifact("a.out")))
+        module = lldb.SBModule(spec)
+        self.assertTrue(module.IsValid())
+        mytype = module.FindFirstType("foobár")
+        self.assertTrue(mytype.IsValid())
+        self.assertTrue(mytype.IsPointerType())


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D43705.135746.patch
Type: text/x-patch
Size: 1000 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20180224/2b9394db/attachment.bin>


More information about the lldb-commits mailing list