diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-09-08 04:29:08 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-09-08 04:29:08 +0000 |
commit | 49f9434a4a69d56779aa37feb2d85e06e7289fce (patch) | |
tree | 591d8302a0ddd7e5b60649ba1132a9051b6b8acc | |
parent | 0187a1b8b9b2b7657de0ba8b0d4f67d30bec83e8 (diff) |
This test does not require --exact-match from FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163456 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Analysis/malloc-plist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/malloc-plist.c b/test/Analysis/malloc-plist.c index effa26f8d3..e12b3f652e 100644 --- a/test/Analysis/malloc-plist.c +++ b/test/Analysis/malloc-plist.c @@ -1,6 +1,6 @@ // RUN: rm -f %t // RUN: %clang_cc1 -analyze -analyzer-checker=unix.Malloc -analyzer-output=plist -o %t %s -// RUN: FileCheck --exact-match --input-file %t %s +// RUN: FileCheck -input-file %t %s typedef __typeof(sizeof(int)) size_t; void *malloc(size_t); |