summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py
diff options
context:
space:
mode:
authorpatrick <patrick@openbsd.org>2020-08-03 14:33:06 +0000
committerpatrick <patrick@openbsd.org>2020-08-03 14:33:06 +0000
commit061da546b983eb767bad15e67af1174fb0bcf31c (patch)
tree83c78b820819d70aa40c36d90447978b300078c5 /gnu/llvm/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py
parentImport LLVM 10.0.0 release including clang, lld and lldb. (diff)
downloadwireguard-openbsd-061da546b983eb767bad15e67af1174fb0bcf31c.tar.xz
wireguard-openbsd-061da546b983eb767bad15e67af1174fb0bcf31c.zip
Import LLVM 10.0.0 release including clang, lld and lldb.
ok hackroom tested by plenty
Diffstat (limited to 'gnu/llvm/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py')
-rw-r--r--gnu/llvm/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py61
1 files changed, 61 insertions, 0 deletions
diff --git a/gnu/llvm/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py b/gnu/llvm/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py
new file mode 100644
index 00000000000..0f5daf51e97
--- /dev/null
+++ b/gnu/llvm/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py
@@ -0,0 +1,61 @@
+import lldb
+from lldbsuite.test.decorators import *
+import lldbsuite.test.lldbtest as lldbtest
+import lldbsuite.test.lldbutil as lldbutil
+import os
+import unittest2
+
+
+class TestDSYMSourcePathRemapping(lldbtest.TestBase):
+
+ mydir = lldbtest.TestBase.compute_mydir(__file__)
+
+ def build(self):
+ botdir = self.getBuildArtifact('buildbot')
+ userdir = self.getBuildArtifact('user')
+ inputs = self.getSourcePath('Inputs')
+ lldbutil.mkdir_p(botdir)
+ lldbutil.mkdir_p(userdir)
+ import shutil
+ for f in ['main.c', 'relative.c']:
+ shutil.copyfile(os.path.join(inputs, f), os.path.join(botdir, f))
+ shutil.copyfile(os.path.join(inputs, f), os.path.join(userdir, f))
+
+ super(TestDSYMSourcePathRemapping, self).build()
+
+ # Remove the build sources.
+ self.assertTrue(os.path.isdir(botdir))
+ shutil.rmtree(botdir)
+
+ # Create a plist.
+ import subprocess
+ dsym = self.getBuildArtifact('a.out.dSYM')
+ uuid = subprocess.check_output(["/usr/bin/dwarfdump", "--uuid", dsym]
+ ).decode("utf-8").split(" ")[1]
+ 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:
+ 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')
+
+
+ @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"])
+ bkpt = target.BreakpointCreateByName('relative')
+ lldbutil.continue_to_breakpoint(process, bkpt)
+ self.expect("source list -n relative", substrs=["Hello Relative"])