diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-09-12 01:11:10 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-09-12 01:11:10 +0000 |
commit | 1b22cec353bc6112653d50b060a1d78d70c51527 (patch) | |
tree | 1a0c099b7fb00d343e7b88945261821d22858675 /test/Analysis/malloc.c | |
parent | 93040b75251f3d8e27ff06bf3d0437cc8e0be1b4 (diff) |
Adjust some analyzer tests to place widely shared inputs inside of an
'Inputs' subdirectory.
The general desire has been to have essentially all of the non-test
input files live in such directories, with some exceptions for obvious
and common patterns like 'foo.c' using 'foo.h'.
This came up because our distributed test runner couldn't find some of
the headers, for example with stl.cpp.
No functionality changed, just shuffling around here.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163674 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis/malloc.c')
-rw-r--r-- | test/Analysis/malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/malloc.c b/test/Analysis/malloc.c index fe99fa10d6..52a79243ce 100644 --- a/test/Analysis/malloc.c +++ b/test/Analysis/malloc.c @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.deadcode.UnreachableCode,alpha.core.CastSize,unix.Malloc,debug.ExprInspection -analyzer-store=region -verify %s -#include "system-header-simulator.h" +#include "Inputs/system-header-simulator.h" void clang_analyzer_eval(int); |