summaryrefslogtreecommitdiffstats
path: root/test/Frontend
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-11-05 15:28:24 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-11-05 15:28:24 +0000
commitff87603939b2620dcf345c0fa2971314394a77c3 (patch)
tree5893aba39369c182ccbc53e1dad9a2bda231e01c /test/Frontend
parent393896f49d5248435cf203cf1de60a86dc507c44 (diff)
Don't run anything other than the compiler in these tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86134 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Frontend')
-rw-r--r--test/Frontend/dependency-gen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Frontend/dependency-gen.c b/test/Frontend/dependency-gen.c
index 953869912b..458d8d58b2 100644
--- a/test/Frontend/dependency-gen.c
+++ b/test/Frontend/dependency-gen.c
@@ -1,8 +1,8 @@
// rdar://6533411
-// RUN: clang -MD -MF %t.d -c -x c -o %t.o %s &&
+// RUN: clang -MD -MF %t.d -S -x c -o %t.o %s &&
// RUN: grep '.*dependency-gen.*:' %t.d &&
// RUN: grep 'dependency-gen.c' %t.d &&
-// RUN: clang -M -x c %s -o %t.d &&
+// RUN: clang -S -M -x c %s -o %t.d &&
// RUN: grep '.*dependency-gen.*:' %t.d &&
// RUN: grep 'dependency-gen.c' %t.d