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 | b724ea5c2e195eda9a16eb114fc2610336a319ac (patch) | |
tree | 56d826fcc44eb964ed70d398c540c70d728dd072 /clang/test/Analysis/malloc-plist.c | |
parent | b0d1c702583bfbfa909103a91a4cfeec9686d8fe (diff) | |
download | bcm5719-llvm-b724ea5c2e195eda9a16eb114fc2610336a319ac.tar.gz bcm5719-llvm-b724ea5c2e195eda9a16eb114fc2610336a319ac.zip |
This test does not require --exact-match from FileCheck.
llvm-svn: 163456
Diffstat (limited to 'clang/test/Analysis/malloc-plist.c')
-rw-r--r-- | clang/test/Analysis/malloc-plist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Analysis/malloc-plist.c b/clang/test/Analysis/malloc-plist.c index effa26f8d30..e12b3f652e0 100644 --- a/clang/test/Analysis/malloc-plist.c +++ b/clang/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); |