[lldb] Tentative attempt to fix command-target-create-resolve-exe.test on buildbot
authorMartin Storsjö <martin@martin.st>
Wed, 22 Jun 2022 15:48:04 +0000 (18:48 +0300)
committerMartin Storsjö <martin@martin.st>
Wed, 22 Jun 2022 15:48:04 +0000 (18:48 +0300)
This test does succeed in my local test environment though, but
fails on the buildbot.

lldb/test/Shell/Commands/command-target-create-resolve-exe.test

index 3026321..1664a45 100644 (file)
 # 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;$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;$PATH" %lldb testmain -b | FileCheck %s
 
 ## Test in cwd, with .exe suffix
 # RUN: cd "%t.dir" && %lldb testmain.exe -b | FileCheck %s