aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-06-17 15:41:17 +0000
committerDouglas Gregor <dgregor@apple.com>2009-06-17 15:41:17 +0000
commit2250d3183201bf8f8f84465376bc9ba737196285 (patch)
tree4958ef03b20bb8d2c4fc760a2ae0f585d6ef0039
parent87415d2d45224596a96ef02310701797d56b2c19 (diff)
Use env properly in test/Driver/analyze.c
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@73609 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Driver/analyze.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Driver/analyze.c b/test/Driver/analyze.c
index 51f7f0cd65..5ca890f9ab 100644
--- a/test/Driver/analyze.c
+++ b/test/Driver/analyze.c
@@ -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 &&