1Test that we correctly find a PE/COFF file in our executable search path, and
2use it when opening minidumps.
3
4RUN: yaml2obj %S/Inputs/find-module.exe.yaml -o %T/find-module.exe
5RUN: yaml2obj %S/Inputs/find-module.dmp.yaml -o %T/find-module.dmp
6RUN: %lldb -O "settings set target.exec-search-paths %T" \
7RUN:   -c %T/find-module.dmp -o "image dump objfile" -o exit | FileCheck %s
8
9CHECK-LABEL: image dump objfile
10CHECK: ObjectFilePECOFF, file = '{{.*}}find-module.exe', arch = i386
11