From b4ecba3a203c5d07fa12b6fd3843c5693e02ab3f Mon Sep 17 00:00:00 2001
From: Reid Kleckner <reid@kleckner.net>
Date: Fri, 27 Dec 2013 20:41:49 +0000
Subject: [PATCH] Move MS header search test inputs to Inputs/

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@198086 91177308-0d34-0410-b5e6-96231b3b80d8
---
 .../{ => Inputs}/microsoft-header-search/a/b/include3.h   | 0
 .../{ => Inputs}/microsoft-header-search/a/findme.h       | 0
 .../{ => Inputs}/microsoft-header-search/a/include2.h     | 0
 .../{ => Inputs}/microsoft-header-search/findme.h         | 0
 .../{ => Inputs}/microsoft-header-search/include1.h       | 0
 test/Preprocessor/microsoft-header-search.c               | 8 ++++----
 6 files changed, 4 insertions(+), 4 deletions(-)
 rename test/Preprocessor/{ => Inputs}/microsoft-header-search/a/b/include3.h (100%)
 rename test/Preprocessor/{ => Inputs}/microsoft-header-search/a/findme.h (100%)
 rename test/Preprocessor/{ => Inputs}/microsoft-header-search/a/include2.h (100%)
 rename test/Preprocessor/{ => Inputs}/microsoft-header-search/findme.h (100%)
 rename test/Preprocessor/{ => Inputs}/microsoft-header-search/include1.h (100%)

diff --git a/test/Preprocessor/microsoft-header-search/a/b/include3.h b/test/Preprocessor/Inputs/microsoft-header-search/a/b/include3.h
similarity index 100%
rename from test/Preprocessor/microsoft-header-search/a/b/include3.h
rename to test/Preprocessor/Inputs/microsoft-header-search/a/b/include3.h
diff --git a/test/Preprocessor/microsoft-header-search/a/findme.h b/test/Preprocessor/Inputs/microsoft-header-search/a/findme.h
similarity index 100%
rename from test/Preprocessor/microsoft-header-search/a/findme.h
rename to test/Preprocessor/Inputs/microsoft-header-search/a/findme.h
diff --git a/test/Preprocessor/microsoft-header-search/a/include2.h b/test/Preprocessor/Inputs/microsoft-header-search/a/include2.h
similarity index 100%
rename from test/Preprocessor/microsoft-header-search/a/include2.h
rename to test/Preprocessor/Inputs/microsoft-header-search/a/include2.h
diff --git a/test/Preprocessor/microsoft-header-search/findme.h b/test/Preprocessor/Inputs/microsoft-header-search/findme.h
similarity index 100%
rename from test/Preprocessor/microsoft-header-search/findme.h
rename to test/Preprocessor/Inputs/microsoft-header-search/findme.h
diff --git a/test/Preprocessor/microsoft-header-search/include1.h b/test/Preprocessor/Inputs/microsoft-header-search/include1.h
similarity index 100%
rename from test/Preprocessor/microsoft-header-search/include1.h
rename to test/Preprocessor/Inputs/microsoft-header-search/include1.h
diff --git a/test/Preprocessor/microsoft-header-search.c b/test/Preprocessor/microsoft-header-search.c
index 6c39b968ef2..d0fc7067643 100644
--- a/test/Preprocessor/microsoft-header-search.c
+++ b/test/Preprocessor/microsoft-header-search.c
@@ -1,6 +1,6 @@
-// RUN: %clang_cc1 -I%S/microsoft-header-search %s -fms-compatibility -verify
+// RUN: %clang_cc1 -I%S/Inputs/microsoft-header-search %s -fms-compatibility -verify
 
-// expected-warning@microsoft-header-search/a/findme.h:3 {{findme.h successfully included using MS search rules}}
-// expected-warning@microsoft-header-search/a/b/include3.h:3 {{#include resolved using non-portable MSVC search rules as}}
+// expected-warning@Inputs/microsoft-header-search/a/findme.h:3 {{findme.h successfully included using MS search rules}}
+// expected-warning@Inputs/microsoft-header-search/a/b/include3.h:3 {{#include resolved using non-portable MSVC search rules as}}
 
-#include "microsoft-header-search/include1.h"
\ No newline at end of file
+#include "Inputs/microsoft-header-search/include1.h"
-- 
GitLab