Skip to content

Commit 123cde5

Browse files
authored
Merge pull request #16368 from bob-wilson/rdar38181372
Reenable Runtime/linux-fatal-backtrace.swift test
2 parents 5fa72f5 + 824bc82 commit 123cde5

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

test/Runtime/linux-fatal-backtrace.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
// REQUIRES: executable_test
55
// REQUIRES: OS=linux-gnu
66
// REQUIRES: lldb
7-
// REQUIRES: rdar38181372
87

98
// Backtraces are not emitted when optimizations are enabled. This test can not
109
// run when optimizations are enabled.

utils/symbolicate-linux-fatal

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ def process_ldd(lddoutput):
5555

5656
def create_lldb_target(binary, memmap):
5757
lldb_debugger = lldb.SBDebugger.Create()
58-
lldb_target = lldb_debugger.CreateTargetWithFileAndArch(
59-
binary, lldb.LLDB_ARCH_DEFAULT)
58+
lldb_target = lldb_debugger.CreateTarget(binary)
6059
module = lldb_target.GetModuleAtIndex(0)
6160
for dynlib_path in memmap:
6261
module = lldb_target.AddModule(

0 commit comments

Comments
 (0)