You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
481 B
11 lines
481 B
Test that we correctly find a PE/COFF file in our executable search path, and
|
|
use it when opening minidumps.
|
|
|
|
RUN: yaml2obj %S/Inputs/find-module.exe.yaml -o %T/find-module.exe
|
|
RUN: yaml2obj %S/Inputs/find-module.dmp.yaml -o %T/find-module.dmp
|
|
RUN: %lldb -O "settings set target.exec-search-paths %T" \
|
|
RUN: -c %T/find-module.dmp -o "image dump objfile" -o exit | FileCheck %s
|
|
|
|
CHECK-LABEL: image dump objfile
|
|
CHECK: ObjectFilePECOFF, file = '{{.*}}find-module.exe', arch = i386
|