From 6ee777de8b35a3a18da424356aebe9ec743dc497 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Sat, 19 Jan 2013 06:31:24 +0000 Subject: [PATCH] Move an input header file under an Inputs directory to be consistent with other auxilliary test inputs and simplify the identification of inputs to tests. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172890 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Analysis/diagnostics/{ => Inputs}/include/sys/queue.h | 0 test/Analysis/diagnostics/false-positive-suppression.c | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename test/Analysis/diagnostics/{ => Inputs}/include/sys/queue.h (100%) diff --git a/test/Analysis/diagnostics/include/sys/queue.h b/test/Analysis/diagnostics/Inputs/include/sys/queue.h similarity index 100% rename from test/Analysis/diagnostics/include/sys/queue.h rename to test/Analysis/diagnostics/Inputs/include/sys/queue.h diff --git a/test/Analysis/diagnostics/false-positive-suppression.c b/test/Analysis/diagnostics/false-positive-suppression.c index 420a573380..cdcd7cc777 100644 --- a/test/Analysis/diagnostics/false-positive-suppression.c +++ b/test/Analysis/diagnostics/false-positive-suppression.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -analyze -analyzer-checker=core,unix -verify %s +// RUN: %clang_cc1 -I %S/Inputs -analyze -analyzer-checker=core,unix -verify %s // expected-no-diagnostics #include "include/sys/queue.h" -- 2.50.1