forked from OSchip/llvm-project
11 lines
479 B
Plaintext
11 lines
479 B
Plaintext
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 > %T/find-module.exe
|
|
RUN: yaml2obj %S/Inputs/find-module.dmp.yaml > %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
|