diff options
author | Jason Molenda <jmolenda@apple.com> | 2018-12-17 23:33:40 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2018-12-17 23:33:40 +0000 |
commit | f47c734e49da195cd5c0435119ed2a86cdfdb5b3 (patch) | |
tree | 17ed3a39721d6096462aa815651f9e0367845076 /lldb/packages/Python/lldbsuite/test/macosx | |
parent | 6a6f6109c4408ffa48c82e98568025d9ebf50f75 (diff) | |
download | bcm5719-llvm-f47c734e49da195cd5c0435119ed2a86cdfdb5b3.tar.gz bcm5719-llvm-f47c734e49da195cd5c0435119ed2a86cdfdb5b3.zip |
A few small updates to the testsuite for running against an iOS device.
Remove the expected-fails for 34538611; using an alternate platform
implementation handles these correctly.
llvm-svn: 349417
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/macosx')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/macosx/queues/TestQueues.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/macosx/queues/TestQueues.py b/lldb/packages/Python/lldbsuite/test/macosx/queues/TestQueues.py index ba58372ce5b..46fd701dbdb 100644 --- a/lldb/packages/Python/lldbsuite/test/macosx/queues/TestQueues.py +++ b/lldb/packages/Python/lldbsuite/test/macosx/queues/TestQueues.py @@ -267,10 +267,14 @@ class TestQueues(TestBase): self.assertTrue(break1, VALID_BREAKPOINT) # Now launch the process, and do not stop at entry point. + libbtr_path = "/Applications/Xcode.app/Contents/Developer/usr/lib/libBacktraceRecording.dylib" + if self.getArchitecture() in ['arm', 'arm64', 'arm64e', 'arm64_32', 'armv7', 'armv7k']: + libbtr_path = "/Developer/usr/lib/libBacktraceRecording.dylib" + process = target.LaunchSimple( None, [ - 'DYLD_INSERT_LIBRARIES=/Applications/Xcode.app/Contents/Developer/usr/lib/libBacktraceRecording.dylib', + 'DYLD_INSERT_LIBRARIES=%s' % (libbtr_path), 'DYLD_LIBRARY_PATH=/usr/lib/system/introspection'], self.get_process_working_directory()) |