1RUN: %build -n --mode=compile --verbose --arch=64 --compiler=/path/to/my/clang \
2RUN:    -o foo foobar.c | FileCheck %s --check-prefix=CHECK-CLANG
3RUN: %build -n --mode=compile --verbose --arch=64 \
4RUN:    --compiler=/path/to/my/x64/cl.exe -o foo foobar.c | \
5RUN:    FileCheck %s --check-prefix=CHECK-MSVC
6
7CHECK-CLANG: Command Line: /path/to/my/clang
8CHECK-SAME: -o
9
10CHECK-MSVC: Command Line: /path/to/my/x64/cl.exe
11CHECK-SAME: /Fo
12