summaryrefslogtreecommitdiff
path: root/test/Driver
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-25 11:27:37 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-25 11:27:37 +0000
commit025f80dfc21a24b910f2b8442a16796ce5de8379 (patch)
tree8aa027fc4fcc502e579cbd3e0e8a039d837c14fc /test/Driver
parent78a88e7233aece64a57741de617d6b80b6082be1 (diff)
downloadclang-025f80dfc21a24b910f2b8442a16796ce5de8379.tar.gz
MultiTestRunner: Validate '&&' at the end of RUN lines.
- This is just to normalize, these will go away soon hopefully. Added all the missing '&&'s that have crept in. :) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77062 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Driver')
-rw-r--r--test/Driver/clang-translation.c6
-rw-r--r--test/Driver/default-toolchain.c6
-rw-r--r--test/Driver/redzone.c2
3 files changed, 7 insertions, 7 deletions
diff --git a/test/Driver/clang-translation.c b/test/Driver/clang-translation.c
index 0a1ef59b13..e0b9e3ada6 100644
--- a/test/Driver/clang-translation.c
+++ b/test/Driver/clang-translation.c
@@ -1,4 +1,4 @@
-// RUN: clang -ccc-host-triple i386-unknown-unknown -### -S -O0 -Os %s -o %t.s -fverbose-asm 2> %t.log
+// RUN: clang -ccc-host-triple i386-unknown-unknown -### -S -O0 -Os %s -o %t.s -fverbose-asm 2> %t.log &&
// RUN: grep '"-triple" "i386-unknown-unknown"' %t.log &&
// RUN: grep '"-S"' %t.log &&
// RUN: grep '"-disable-free"' %t.log &&
@@ -9,8 +9,8 @@
// RUN: grep '"-Os"' %t.log &&
// RUN: grep '"-o" .*clang-translation.*' %t.log &&
// RUN: grep '"--asm-verbose"' %t.log &&
-// RUN: clang -ccc-host-triple i386-apple-darwin9 -### -S %s -o %t.s 2> %t.log
+// RUN: clang -ccc-host-triple i386-apple-darwin9 -### -S %s -o %t.s 2> %t.log &&
// RUN: grep '"--mcpu=yonah"' %t.log &&
-// RUN: clang -ccc-host-triple x86_64-apple-darwin9 -### -S %s -o %t.s 2> %t.log
+// RUN: clang -ccc-host-triple x86_64-apple-darwin9 -### -S %s -o %t.s 2> %t.log &&
// RUN: grep '"--mcpu=core2"' %t.log &&
// RUN: true
diff --git a/test/Driver/default-toolchain.c b/test/Driver/default-toolchain.c
index 216394fe97..0e8a02679e 100644
--- a/test/Driver/default-toolchain.c
+++ b/test/Driver/default-toolchain.c
@@ -1,8 +1,8 @@
-// RUN: clang -ccc-host-triple i386-unknown-unknown -m64 -v 2> %t
+// RUN: clang -ccc-host-triple i386-unknown-unknown -m64 -v 2> %t &&
// RUN: grep 'Target: x86_64-unknown-unknown' %t &&
-// RUN: clang -ccc-host-triple i386-apple-darwin9 -arch ppc -m64 -v 2> %t
+// RUN: clang -ccc-host-triple i386-apple-darwin9 -arch ppc -m64 -v 2> %t &&
// RUN: grep 'Target: powerpc64-apple-darwin9' %t &&
-// RUN: clang -ccc-host-triple i386-apple-darwin9 -arch ppc64 -m32 -v 2> %t
+// RUN: clang -ccc-host-triple i386-apple-darwin9 -arch ppc64 -m32 -v 2> %t &&
// RUN: grep 'Target: powerpc-apple-darwin9' %t
diff --git a/test/Driver/redzone.c b/test/Driver/redzone.c
index 8709e71fb3..bc8a80fa96 100644
--- a/test/Driver/redzone.c
+++ b/test/Driver/redzone.c
@@ -1,5 +1,5 @@
// RUN: clang -mno-red-zone %s -S -emit-llvm -o %t.log &&
-// RUN: grep 'noredzone' %t.log
+// RUN: grep 'noredzone' %t.log &&
// RUN: clang -mred-zone %s -S -emit-llvm -o %t.log &&
// RUN: grep -v 'noredzone' %t.log