[lldb] Second attempt at fixing command-target-create-resolve-exe.test on the buildbot

This commit is contained in:
Alvin Wong 2022-06-22 20:48:01 +03:00 committed by Martin Storsjö
parent 21ba9d0b62
commit a1ee0b947d
2 changed files with 5 additions and 2 deletions

View File

@ -12,10 +12,10 @@
# RUN: %lldb %t.dir/testmain.exe -b | FileCheck %s
## Test with exe on path, with .exe suffix
# RUN: env PATH="%t.dir;$PATH" %lldb testmain.exe -b | FileCheck %s
# RUN: env PATH="%t.dir%{pathsep}%{PATH}" %lldb testmain.exe -b | FileCheck %s
## Test with exe on path, without .exe suffix
# RUN: env PATH="%t.dir;$PATH" %lldb testmain -b | FileCheck %s
# RUN: env PATH="%t.dir%{pathsep}%{PATH}" %lldb testmain -b | FileCheck %s
## Test in cwd, with .exe suffix
# RUN: cd "%t.dir" && %lldb testmain.exe -b | FileCheck %s

View File

@ -1 +1,4 @@
config.suffixes = ['.s', '.test', '.yaml']
# This is needed by command-target-create-resolve-exe.test
config.substitutions.append(('%{PATH}', config.environment['PATH']))