[cfe-commits] r73609 - /cfe/trunk/test/Driver/analyze.c
Douglas Gregor
dgregor at apple.com
Wed Jun 17 08:41:21 PDT 2009
Author: dgregor
Date: Wed Jun 17 10:41:17 2009
New Revision: 73609
URL: http://llvm.org/viewvc/llvm-project?rev=73609&view=rev
Log:
Use env properly in test/Driver/analyze.c
Modified:
cfe/trunk/test/Driver/analyze.c
Modified: cfe/trunk/test/Driver/analyze.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/analyze.c?rev=73609&r1=73608&r2=73609&view=diff
==============================================================================
--- cfe/trunk/test/Driver/analyze.c (original)
+++ cfe/trunk/test/Driver/analyze.c Wed Jun 17 10:41:17 2009
@@ -1,8 +1,7 @@
// Verify that the analyzer gets the same flags as normal compilation
// (at least for a few key ones).
-// RUN: env MACOSX_DEPLOYMENT_TARGET=10.5 &&
-// RUN: clang -ccc-host-triple i386-apple-darwin9 -### --analyze -o /dev/null %s -msse 2> %t.log &&
+// RUN: env MACOSX_DEPLOYMENT_TARGET=10.5 clang -ccc-host-triple i386-apple-darwin9 -### --analyze -o /dev/null %s -msse 2> %t.log &&
// RUN: grep '"-analyze"' %t.log &&
// RUN: grep '"--fmath-errno=0"' %t.log &&
// RUN: grep '"-target-feature" "+sse"' %t.log &&
More information about the cfe-commits
mailing list