From 0bc7105cd1447c2d85716c3dcd2924595decc939 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20Storsj=C3=B6?= Date: Wed, 22 Jun 2022 18:48:04 +0300 Subject: [PATCH] [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. --- lldb/test/Shell/Commands/command-target-create-resolve-exe.test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 3026321..1664a45 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 -- 2.7.4