diff options
author | Artem Dergachev <artem.dergachev@gmail.com> | 2017-05-03 11:47:13 +0000 |
---|---|---|
committer | Artem Dergachev <artem.dergachev@gmail.com> | 2017-05-03 11:47:13 +0000 |
commit | b6a513d1b25fd7a8a960075df63f93b4ef409644 (patch) | |
tree | 679cc6f957384d5e8fa9280d91e047ec32169d23 /clang/test/Analysis/MismatchedDeallocator-path-notes.cpp | |
parent | 53c8d95c850eb2a97962882c9c0effe98a917f41 (diff) | |
download | bcm5719-llvm-b6a513d1b25fd7a8a960075df63f93b4ef409644.tar.gz bcm5719-llvm-b6a513d1b25fd7a8a960075df63f93b4ef409644.zip |
[analyzer] Fix memory error bug category capitalization.
It was written as "Memory Error" in most places and as "Memory error" in a few
other places, however it is the latter that is more consistent with
other categories (such as "Logic error").
rdar://problem/31718115
Differential Revision: https://reviews.llvm.org/D32702
llvm-svn: 302016
Diffstat (limited to 'clang/test/Analysis/MismatchedDeallocator-path-notes.cpp')
-rw-r--r-- | clang/test/Analysis/MismatchedDeallocator-path-notes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Analysis/MismatchedDeallocator-path-notes.cpp b/clang/test/Analysis/MismatchedDeallocator-path-notes.cpp index 118f23bca11..1354386fc8b 100644 --- a/clang/test/Analysis/MismatchedDeallocator-path-notes.cpp +++ b/clang/test/Analysis/MismatchedDeallocator-path-notes.cpp @@ -287,7 +287,7 @@ void test() { // CHECK-NEXT: </dict> // CHECK-NEXT: </array> // CHECK-NEXT: <key>description</key><string>Memory allocated by 'new[]' should be deallocated by 'delete[]', not 'delete'</string> -// CHECK-NEXT: <key>category</key><string>Memory Error</string> +// CHECK-NEXT: <key>category</key><string>Memory error</string> // CHECK-NEXT: <key>type</key><string>Bad deallocator</string> // CHECK-NEXT: <key>check_name</key><string>unix.MismatchedDeallocator</string> // CHECK-NEXT: <!-- This hash is experimental and going to change! --> |