diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2018-08-14 00:18:48 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2018-08-14 00:18:48 +0000 |
commit | 5b2636142a95088de17f6ae4702e4c4e172a0088 (patch) | |
tree | 94374bf11b9f2019c3ea23b86fe072913cf3db61 /clang/test/Analysis/inline-unique-reports.c | |
parent | 936240c77a0967e3c764ad495278a909fe02f175 (diff) | |
download | bcm5719-llvm-5b2636142a95088de17f6ae4702e4c4e172a0088.tar.gz bcm5719-llvm-5b2636142a95088de17f6ae4702e4c4e172a0088.zip |
Move test inputs into Inputs directory.
We don't need a new ExpectedOutputs/ convention. Expected outputs are
just another form of test input.
llvm-svn: 339634
Diffstat (limited to 'clang/test/Analysis/inline-unique-reports.c')
-rw-r--r-- | clang/test/Analysis/inline-unique-reports.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Analysis/inline-unique-reports.c b/clang/test/Analysis/inline-unique-reports.c index 5545d2d4ac6..e8689925951 100644 --- a/clang/test/Analysis/inline-unique-reports.c +++ b/clang/test/Analysis/inline-unique-reports.c @@ -1,5 +1,5 @@ // RUN: %clang_analyze_cc1 %s -analyzer-checker=core.NullDereference -analyzer-output=plist -o %t > /dev/null 2>&1 -// RUN: tail -n +11 %t | diff -u -w - %S/ExpectedOutputs/plists/inline-unique-reports.c.plist +// RUN: tail -n +11 %t | diff -u -w - %S/Inputs/expected-plists/inline-unique-reports.c.plist static inline bug(int *p) { *p = 0xDEADBEEF; |