diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-02-21 21:51:40 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-02-21 21:51:40 +0000 |
commit | 286e0e08185f6840cbb9c7ea0bddd7d61abc8365 (patch) | |
tree | 1b03e95940e2e5944094760650f626b0114e14ea /clang/test/Driver/gcc-toolchain.cpp | |
parent | 24992371a556a0ea014fb894a2947815baedd3d7 (diff) | |
download | bcm5719-llvm-286e0e08185f6840cbb9c7ea0bddd7d61abc8365.tar.gz bcm5719-llvm-286e0e08185f6840cbb9c7ea0bddd7d61abc8365.zip |
Clean up, add some documentation, and make this test return to checking
the linker toolchainness a bit more thoroughly. It used to work this
way, but hit buildbot issues. Hopefully subsequent fixes have addressed
those problems, but I'll be watching the bots.
llvm-svn: 151090
Diffstat (limited to 'clang/test/Driver/gcc-toolchain.cpp')
-rw-r--r-- | clang/test/Driver/gcc-toolchain.cpp | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/clang/test/Driver/gcc-toolchain.cpp b/clang/test/Driver/gcc-toolchain.cpp index f56b11051b4..5529a5dc9a9 100644 --- a/clang/test/Driver/gcc-toolchain.cpp +++ b/clang/test/Driver/gcc-toolchain.cpp @@ -4,22 +4,20 @@ // RUN: -target i386-unknown-linux \ // RUN: -gcc-toolchain %S/Inputs/ubuntu_11.04_multiarch_tree/usr \ // RUN: | FileCheck %s - +// +// Test for header search toolchain detection. // CHECK: "-internal-isystem" // CHECK: "[[TOOLCHAIN:[^"]+]]/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5/../../../../../include/c++/4.5" // CHECK: "-internal-isystem" // CHECK: "[[TOOLCHAIN]]/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5/../../../../../include/c++/4.5/i686-linux-gnu" // CHECK: "-internal-isystem" // CHECK: "[[TOOLCHAIN]]/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5/../../../../../include/c++/4.5/backward" -// CHECK: "-internal-isystem" -// CHECK: "/usr/local/include" -// CHECK: "-internal-isystem" -// CHECK: lib/clang/3.1/include" -// CHECK: "-internal-externc-isystem" -// CHECK: "/include" -// CHECK: "-internal-externc-isystem" -// CHECK: "/usr/include" +// CHECK: "-internal-isystem" "/usr/local/include" +// +// Test for linker toolchain detection. Note that we use a separate variable +// because the '/'s may be different in the linker invocation than in the +// header search. // CHECK: "{{[^"]*}}ld{{(.exe)?}}" -// CHECK: "{{[^"]*}}/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5/crtbegin.o" -// CHECK: "-L{{[^"]*}}/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5" -// CHECK: "-L{{[^"]*}}/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5/../../../.." +// CHECK: "[[TOOLCHAIN2:[^"]*]]/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5/crtbegin.o" +// CHECK: "-L[[TOOLCHAIN2]]/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5" +// CHECK: "-L[[TOOLCHAIN2]]/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5/../../../.." |