summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2019-11-11 12:22:55 -0800
committerAdrian Prantl <aprantl@apple.com>2019-11-11 12:22:55 -0800
commit646d927175ebd0bb1d7af7d51b41bc1d7b1fe651 (patch)
treef4dcc31ce5de6583236afb5117f0e021279ba824 /lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py
parentda83e96273527a137f2ebd77cedb920180eab621 (diff)
downloadbcm5719-llvm-646d927175ebd0bb1d7af7d51b41bc1d7b1fe651.tar.gz
bcm5719-llvm-646d927175ebd0bb1d7af7d51b41bc1d7b1fe651.zip
Replace tabs with spaces. (NFC)
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py b/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py
index 2ee37915039..0f5daf51e97 100644
--- a/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py
+++ b/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py
@@ -35,24 +35,24 @@ class TestDSYMSourcePathRemapping(lldbtest.TestBase):
import re
self.assertTrue(re.match(r'[0-9a-fA-F-]+', uuid))
plist = os.path.join(dsym, 'Contents', 'Resources', uuid + '.plist')
- with open(plist, 'w') as f:
+ with open(plist, 'w') as f:
f.write('<?xml version="1.0" encoding="UTF-8"?>\n')
f.write('<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">\n')
- f.write('<plist version="1.0">\n')
- f.write('<dict>\n')
- f.write(' <key>DBGSourcePathRemapping</key>\n')
- f.write(' <dict>\n')
- f.write(' <key>' + botdir + '</key>\n')
- f.write(' <string>' + userdir + '</string>\n')
- f.write(' </dict>\n')
- f.write('</dict>\n')
- f.write('</plist>\n')
+ f.write('<plist version="1.0">\n')
+ f.write('<dict>\n')
+ f.write(' <key>DBGSourcePathRemapping</key>\n')
+ f.write(' <dict>\n')
+ f.write(' <key>' + botdir + '</key>\n')
+ f.write(' <string>' + userdir + '</string>\n')
+ f.write(' </dict>\n')
+ f.write('</dict>\n')
+ f.write('</plist>\n')
@skipIf(debug_info=no_match("dsym"))
def test(self):
self.build()
-
+
target, process, _, _ = lldbutil.run_to_name_breakpoint(
self, 'main')
self.expect("source list -n main", substrs=["Hello Absolute"])
OpenPOWER on IntegriCloud