diff options
| author | Reid Kleckner <reid@kleckner.net> | 2013-12-27 20:41:49 +0000 |
|---|---|---|
| committer | Reid Kleckner <reid@kleckner.net> | 2013-12-27 20:41:49 +0000 |
| commit | 52b10afb08d7d85263209929f24a804e6ad75b08 (patch) | |
| tree | cee1c03826dd50e182778cdb0c7aa42f882e00fb /clang/test/Preprocessor/Inputs/microsoft-header-search | |
| parent | 31a9f74c1d108ee363f5315b8f308aa14e294d8d (diff) | |
| download | bcm5719-llvm-52b10afb08d7d85263209929f24a804e6ad75b08.tar.gz bcm5719-llvm-52b10afb08d7d85263209929f24a804e6ad75b08.zip | |
Move MS header search test inputs to Inputs/
llvm-svn: 198086
Diffstat (limited to 'clang/test/Preprocessor/Inputs/microsoft-header-search')
5 files changed, 21 insertions, 0 deletions
diff --git a/clang/test/Preprocessor/Inputs/microsoft-header-search/a/b/include3.h b/clang/test/Preprocessor/Inputs/microsoft-header-search/a/b/include3.h new file mode 100644 index 00000000000..6f6ce4028fd --- /dev/null +++ b/clang/test/Preprocessor/Inputs/microsoft-header-search/a/b/include3.h @@ -0,0 +1,3 @@ +#pragma once + +#include "findme.h"
\ No newline at end of file diff --git a/clang/test/Preprocessor/Inputs/microsoft-header-search/a/findme.h b/clang/test/Preprocessor/Inputs/microsoft-header-search/a/findme.h new file mode 100644 index 00000000000..b809c9075d6 --- /dev/null +++ b/clang/test/Preprocessor/Inputs/microsoft-header-search/a/findme.h @@ -0,0 +1,3 @@ +#pragma once + +#warning findme.h successfully included using MS search rules
\ No newline at end of file diff --git a/clang/test/Preprocessor/Inputs/microsoft-header-search/a/include2.h b/clang/test/Preprocessor/Inputs/microsoft-header-search/a/include2.h new file mode 100644 index 00000000000..99640ae47a8 --- /dev/null +++ b/clang/test/Preprocessor/Inputs/microsoft-header-search/a/include2.h @@ -0,0 +1,6 @@ +#pragma once + +#include "b/include3.h" +#pragma once + +#include "b/include3.h"
\ No newline at end of file diff --git a/clang/test/Preprocessor/Inputs/microsoft-header-search/findme.h b/clang/test/Preprocessor/Inputs/microsoft-header-search/findme.h new file mode 100644 index 00000000000..aeaf795a1a8 --- /dev/null +++ b/clang/test/Preprocessor/Inputs/microsoft-header-search/findme.h @@ -0,0 +1,3 @@ +#pragma once + +#error Wrong findme.h included, MSVC header search incorrect
\ No newline at end of file diff --git a/clang/test/Preprocessor/Inputs/microsoft-header-search/include1.h b/clang/test/Preprocessor/Inputs/microsoft-header-search/include1.h new file mode 100644 index 00000000000..f00fac7a179 --- /dev/null +++ b/clang/test/Preprocessor/Inputs/microsoft-header-search/include1.h @@ -0,0 +1,6 @@ +#pragma once + +#include "a/include2.h" +#pragma once + +#include "a/include2.h"
\ No newline at end of file |

