diff options
author | Reid Kleckner <rnk@google.com> | 2019-06-10 23:25:43 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2019-06-10 23:25:43 +0000 |
commit | e7ea1834f467db618a8d8872d7eb9adc14ef5aac (patch) | |
tree | d329a7b182bc5082fa8bf634be1bf0f98887e29a /clang/test/Analysis/MismatchedDeallocator-path-notes.cpp | |
parent | 5062cf599ca2602f03c42404f3951449d24c5c8b (diff) | |
download | bcm5719-llvm-e7ea1834f467db618a8d8872d7eb9adc14ef5aac.tar.gz bcm5719-llvm-e7ea1834f467db618a8d8872d7eb9adc14ef5aac.zip |
Revert r362994 & co "[analyzer][tests] Add normalize_plist to replace diff_plist"
Reverts r362998, r362996, and r362994 because the tests do not pass on
Windows due to CRLF changes. Adding back `-w` to diff is not enough, the
new grep substitution doesn't work on Windows, and fixing it is
non-trivial.
llvm-svn: 363007
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 6138af3399e..5529d495be8 100644 --- a/clang/test/Analysis/MismatchedDeallocator-path-notes.cpp +++ b/clang/test/Analysis/MismatchedDeallocator-path-notes.cpp @@ -1,6 +1,6 @@ // RUN: %clang_analyze_cc1 -analyzer-checker=core,unix.MismatchedDeallocator -analyzer-output=text -verify %s // RUN: %clang_analyze_cc1 -analyzer-checker=core,unix.MismatchedDeallocator -analyzer-output=plist %s -o %t.plist -// RUN: tail -n +11 %t.plist | %normalize_plist | diff -u %S/copypaste/Inputs/expected-plists/MismatchedDeallocator-path-notes.cpp.plist - +// RUN: tail -n +11 %t.plist | %diff_plist %S/copypaste/Inputs/expected-plists/MismatchedDeallocator-path-notes.cpp.plist - void changePointee(int *p); int *allocIntArray(unsigned c) { |