diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-07-04 04:38:48 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-07-04 04:38:48 +0000 |
commit | 489f7b64199b054128452c903cf18bb3daa71444 (patch) | |
tree | f5ba1458d4ea92f179fe4192e73e739726f45431 | |
parent | fe5924554e29a687d36d17d07b7a6b28ef5afb46 (diff) |
'&&' clang commands together so that the test status reflects the results of all three clang executions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53132 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Analysis/dead-stores.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Analysis/dead-stores.c b/test/Analysis/dead-stores.c index 90705ace6a..1f1db78a15 100644 --- a/test/Analysis/dead-stores.c +++ b/test/Analysis/dead-stores.c @@ -1,5 +1,5 @@ -// RUN: clang -warn-dead-stores -verify %s -// RUN: clang -checker-simple -warn-dead-stores -verify %s +// RUN: clang -warn-dead-stores -verify %s && +// RUN: clang -checker-simple -warn-dead-stores -verify %s && // RUN: clang -warn-dead-stores -checker-simple -verify %s |