diff options
author | Adrian Prantl <aprantl@apple.com> | 2019-11-11 12:22:55 -0800 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2019-11-11 12:22:55 -0800 |
commit | 646d927175ebd0bb1d7af7d51b41bc1d7b1fe651 (patch) | |
tree | f4dcc31ce5de6583236afb5117f0e021279ba824 /lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py | |
parent | da83e96273527a137f2ebd77cedb920180eab621 (diff) | |
download | bcm5719-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.py | 22 |
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"]) |