Make test/Driver/biarch.c use FileCheck instead of grep

Summary:
For clarity and ease of maintenance, I suggest porting this test
to use the same tooling as the rest of the tests.

Reviewers: joerg, rengolin, dougk, yaron.keren

Subscribers: cfe-commits

Differential Revision: http://reviews.llvm.org/D14548

llvm-svn: 252720
This commit is contained in:
Artyom Skrobov 2015-11-11 10:45:44 +00:00
parent d7731988ef
commit efb0c3780e
1 changed files with 24 additions and 36 deletions

View File

@ -1,44 +1,32 @@
// RUN: %clang -target i386--netbsd -m32 %s -### 2> %t
// RUN: grep '"-cc1" "-triple" "i386--netbsd"' %t
// RUN: %clang -target i386--netbsd -m32 %s -### 2>&1 | FileCheck -check-prefix=I386 %s
// RUN: %clang -target x86_64--netbsd -m32 %s -### 2>&1 | FileCheck -check-prefix=I386 %s
// I386: "-cc1" "-triple" "i386--netbsd"
// RUN: %clang -target i386--netbsd -m64 %s -### 2> %t
// RUN: grep '"-cc1" "-triple" "x86_64--netbsd"' %t
// RUN: %clang -target i386--netbsd -m64 %s -### 2>&1 | FileCheck -check-prefix=X86_64 %s
// RUN: %clang -target x86_64--netbsd -m64 %s -### 2>&1 | FileCheck -check-prefix=X86_64 %s
// X86_64: "-cc1" "-triple" "x86_64--netbsd"
// RUN: %clang -target x86_64--netbsd -m32 %s -### 2> %t
// RUN: grep '"-cc1" "-triple" "i386--netbsd"' %t
// RUN: %clang -target armv6--netbsd-eabihf -m32 %s -### 2>&1 | FileCheck -check-prefix=ARMV6 %s
// ARMV6: "-cc1" "-triple" "armv6k--netbsd-eabihf"
// RUN: %clang -target x86_64--netbsd -m64 %s -### 2> %t
// RUN: grep '"-cc1" "-triple" "x86_64--netbsd"' %t
// RUN: %clang -target sparcv9--netbsd -m32 %s -### 2>&1 | FileCheck -check-prefix=SPARC %s
// RUN: %clang -target sparc--netbsd -m32 %s -### 2>&1 | FileCheck -check-prefix=SPARC %s
// SPARC: "-cc1" "-triple" "sparc--netbsd"
// RUN: %clang -target armv6--netbsd-eabihf -m32 %s -### 2> %t
// RUN: grep '"-cc1" "-triple" "armv6k--netbsd-eabihf"' %t
// RUN: %clang -target sparcv9--netbsd -m64 %s -### 2>&1 | FileCheck -check-prefix=SPARCV9 %s
// RUN: %clang -target sparc--netbsd -m64 %s -### 2>&1 | FileCheck -check-prefix=SPARCV9 %s
// SPARCV9: "-cc1" "-triple" "sparcv9--netbsd"
// RUN: %clang -target sparcv9--netbsd -m32 %s -### 2> %t
// RUN: grep '"-cc1" "-triple" "sparc--netbsd"' %t
// RUN: %clang -target sparc64--netbsd -m64 %s -### 2>&1 | FileCheck -check-prefix=SPARC64 %s
// SPARC64: "-cc1" "-triple" "sparc64--netbsd"
// RUN: %clang -target sparcv9--netbsd -m64 %s -### 2> %t
// RUN: grep '"-cc1" "-triple" "sparcv9--netbsd"' %t
// RUN: %clang -target sparcel -o foo %s -### 2>&1 | FileCheck -check-prefix=SPARCEL %s
// SPARCEL: gcc{{(\.exe)?}}" "-EL" "-o" "foo"
// RUN: %clang -target sparc64--netbsd -m64 %s -### 2> %t
// RUN: grep '"-cc1" "-triple" "sparc64--netbsd"' %t
// RUN: %clang -target mips64--netbsd -m32 %s -### 2>&1 | FileCheck -check-prefix=MIPS %s
// RUN: %clang -target mips--netbsd -m32 %s -### 2>&1 | FileCheck -check-prefix=MIPS %s
// MIPS: "-cc1" "-triple" "mips--netbsd"
// RUN: %clang -target sparc--netbsd -m32 %s -### 2> %t
// RUN: grep '"-cc1" "-triple" "sparc--netbsd"' %t
// RUN: %clang -target sparc--netbsd -m64 %s -### 2> %t
// RUN: grep '"-cc1" "-triple" "sparcv9--netbsd"' %t
// RUN: %clang -target sparcel -o foo %s -### 2> %t
// RUN: grep 'gcc\(\.exe\)\?" "-EL" "-o" "foo"' %t
// RUN: %clang -target mips64--netbsd -m32 %s -### 2> %t
// RUN: grep '"-cc1" "-triple" "mips--netbsd"' %t
// RUN: %clang -target mips64--netbsd -m64 %s -### 2> %t
// RUN: grep '"-cc1" "-triple" "mips64--netbsd"' %t
// RUN: %clang -target mips--netbsd -m32 %s -### 2> %t
// RUN: grep '"-cc1" "-triple" "mips--netbsd"' %t
// RUN: %clang -target mips--netbsd -m64 %s -### 2> %t
// RUN: grep '"-cc1" "-triple" "mips64--netbsd"' %t
// RUN: %clang -target mips64--netbsd -m64 %s -### 2>&1 | FileCheck -check-prefix=MIPS64 %s
// RUN: %clang -target mips--netbsd -m64 %s -### 2>&1 | FileCheck -check-prefix=MIPS64 %s
// MIPS64: "-cc1" "-triple" "mips64--netbsd"