diff options
author | George Karpenkov <ekarpenkov@apple.com> | 2018-09-07 21:58:24 +0000 |
---|---|---|
committer | George Karpenkov <ekarpenkov@apple.com> | 2018-09-07 21:58:24 +0000 |
commit | 8a88c835931e74ea282b40c7a59630b749e08d83 (patch) | |
tree | ad2bd89e72952be4ff58e67a6d266f806fae886c /clang/test/Analysis/conditional-path-notes.c | |
parent | a0d25815a063bc825d0962dfd93e225242599795 (diff) | |
download | bcm5719-llvm-8a88c835931e74ea282b40c7a59630b749e08d83.tar.gz bcm5719-llvm-8a88c835931e74ea282b40c7a59630b749e08d83.zip |
Revert "Revert "Revert "Revert "[analyzer] Add coverage information to plist output, update tests""""
This reverts commit 2f5d71d9fa135be86bb299e7d773036e50bf1df6.
Hopefully fixing tests on Windows.
llvm-svn: 341719
Diffstat (limited to 'clang/test/Analysis/conditional-path-notes.c')
-rw-r--r-- | clang/test/Analysis/conditional-path-notes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Analysis/conditional-path-notes.c b/clang/test/Analysis/conditional-path-notes.c index c0903a45f9a..6f46a789145 100644 --- a/clang/test/Analysis/conditional-path-notes.c +++ b/clang/test/Analysis/conditional-path-notes.c @@ -1,6 +1,6 @@ // RUN: %clang_analyze_cc1 %s -analyzer-checker=core.NullDereference -analyzer-output=text -verify // RUN: %clang_analyze_cc1 %s -analyzer-checker=core.NullDereference -analyzer-output=plist -o %t -// RUN: tail -n +11 %t | diff -u -w - %S/Inputs/expected-plists/conditional-path-notes.c.plist +// RUN: cat %t | diff -u -w -I "<string>/" -I "<string>.:" -I "clang version" - %S/Inputs/expected-plists/conditional-path-notes.c.plist void testCondOp(int *p) { int *x = p ? p : p; |