[Lldb-commits] [lldb] 0bc7105 - [lldb] Tentative attempt to fix command-target-create-resolve-exe.test on buildbot

Martin Storsjö via lldb-commits lldb-commits at lists.llvm.org
Wed Jun 22 08:48:43 PDT 2022


Author: Martin Storsjö
Date: 2022-06-22T18:48:04+03:00
New Revision: 0bc7105cd1447c2d85716c3dcd2924595decc939

URL: https://github.com/llvm/llvm-project/commit/0bc7105cd1447c2d85716c3dcd2924595decc939
DIFF: https://github.com/llvm/llvm-project/commit/0bc7105cd1447c2d85716c3dcd2924595decc939.diff

LOG: [lldb] Tentative attempt to fix command-target-create-resolve-exe.test on buildbot

This test does succeed in my local test environment though, but
fails on the buildbot.

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/lldb/test/Shell/Commands/command-target-create-resolve-exe.test b/lldb/test/Shell/Commands/command-target-create-resolve-exe.test
index 30263217ede1..1664a45fd32a 100644
--- a/lldb/test/Shell/Commands/command-target-create-resolve-exe.test
+++ b/lldb/test/Shell/Commands/command-target-create-resolve-exe.test
@@ -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;$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


        


More information about the lldb-commits mailing list