Skip to content

Commit f8463da

Browse files
committed
[lldb] Allow EXE or exe in toolchain-msvc.test
I suspect that one of link or cl is found by shutil.which and one isn't, hence the case difference. It doesn't really matter for what the test is looking for.
1 parent 2e6657b commit f8463da

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lldb/test/Shell/BuildScript/toolchain-msvc.test

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ RUN: | FileCheck --check-prefix=64BIT %s
2323
32BIT: Cleaning {{.*}}toolchain-msvc.test.tmp\foo.pdb
2424
32BIT: Cleaning {{.*}}toolchain-msvc.test.tmp\foo.exe
2525
32BIT: compiling foobar.c -> foo.exe-foobar.obj
26-
32BIT: Command Line: {{.*}}\{{[Hh]ost[Xx](64|86)}}\{{(x86|arm)}}\cl.EXE
26+
32BIT: Command Line: {{.*}}\{{[Hh]ost[Xx](64|86)}}\{{(x86|arm)}}\cl.{{EXE|exe}}
2727
32BIT: linking foo.exe-foobar.obj -> foo.exe
28-
32BIT: Command Line: {{.*}}\{{[Hh]ost[Xx](64|86)}}\{{(x86|arm)}}\link.EXE
28+
32BIT: Command Line: {{.*}}\{{[Hh]ost[Xx](64|86)}}\{{(x86|arm)}}\link.{{EXE|exe}}
2929
32BIT: Env
3030
32BIT: LIB = {{.*}}\ATLMFC\lib\{{(x86|arm)}}
3131
32BIT: {{.*}}\lib\{{(x86|arm)}}
@@ -51,9 +51,9 @@ RUN: | FileCheck --check-prefix=64BIT %s
5151
64BIT: Cleaning {{.*}}toolchain-msvc.test.tmp\foo.pdb
5252
64BIT: Cleaning {{.*}}toolchain-msvc.test.tmp\foo.exe
5353
64BIT: compiling foobar.c -> foo.exe-foobar.obj
54-
64BIT: Command Line: {{.*}}\{{[Hh]ost[Xx](64|86)}}\{{(x64|arm64)}}\cl.EXE
54+
64BIT: Command Line: {{.*}}\{{[Hh]ost[Xx](64|86)}}\{{(x64|arm64)}}\cl.{{EXE|exe}}
5555
64BIT: linking foo.exe-foobar.obj -> foo.exe
56-
64BIT: Command Line: {{.*}}\{{[Hh]ost[Xx](64|86)}}\{{(x64|arm64)}}\link.EXE
56+
64BIT: Command Line: {{.*}}\{{[Hh]ost[Xx](64|86)}}\{{(x64|arm64)}}\link.{{EXE|exe}}
5757
64BIT: Env
5858
64BIT: LIB = {{.*}}\ATLMFC\lib\{{(x64|arm64)}}
5959
64BIT: {{.*}}\lib\{{(x64|arm64)}}

0 commit comments

Comments
 (0)