diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2018-09-07 10:27:16 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2018-09-07 10:27:16 +0000 |
commit | b746df0b0a1637803b131598daca5907955facb3 (patch) | |
tree | 057bc78d66920584b0d22043f504e63017bf8c08 /clang/test/Analysis/NewDelete-path-notes.cpp | |
parent | edf0f6a79bcc33039c67e852a2fc19c719d873a4 (diff) | |
download | bcm5719-llvm-b746df0b0a1637803b131598daca5907955facb3.tar.gz bcm5719-llvm-b746df0b0a1637803b131598daca5907955facb3.zip |
Revert "Revert "Revert "[analyzer] Add coverage information to plist output, update tests"""
Reverts analyzer tests from rL341627 again as they still broke windows buildbots
llvm-svn: 341648
Diffstat (limited to 'clang/test/Analysis/NewDelete-path-notes.cpp')
-rw-r--r-- | clang/test/Analysis/NewDelete-path-notes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Analysis/NewDelete-path-notes.cpp b/clang/test/Analysis/NewDelete-path-notes.cpp index 888e61fb42d..a74602fb3c8 100644 --- a/clang/test/Analysis/NewDelete-path-notes.cpp +++ b/clang/test/Analysis/NewDelete-path-notes.cpp @@ -1,7 +1,7 @@ // RUN: %clang_analyze_cc1 -analyzer-checker=cplusplus.NewDelete,unix.Malloc -analyzer-output=text -verify %s // RUN: %clang_analyze_cc1 -analyzer-checker=cplusplus.NewDelete,unix.Malloc -analyzer-output=text -analyzer-config c++-allocator-inlining=true -verify %s // RUN: %clang_analyze_cc1 -analyzer-checker=cplusplus.NewDelete,unix.Malloc -analyzer-output=plist %s -o %t.plist -// RUN: cat %t.plist | diff -u -w -I "<string>/" -I "clang version" - %S/Inputs/expected-plists/NewDelete-path-notes.cpp.plist +// RUN: tail -n +11 %t.plist | diff -u -w - %S/Inputs/expected-plists/NewDelete-path-notes.cpp.plist void test() { int *p = new int; |