diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-01-22 23:07:47 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-01-22 23:07:47 +0000 |
commit | 999500a26dfb1285bb9ea4dc489f49f7809d09d9 (patch) | |
tree | 0f3a34d577a2e23ee65f777b23baea9b9305bb5b /clang/test/Modules/macro-reexport/module.modulemap | |
parent | e8b5e49ffd3f21f80bceab0f9baeb35331106d55 (diff) | |
download | bcm5719-llvm-999500a26dfb1285bb9ea4dc489f49f7809d09d9.tar.gz bcm5719-llvm-999500a26dfb1285bb9ea4dc489f49f7809d09d9.zip |
Reorganize test/Modules:
* Put all input files under Inputs/, move corresponding tests into test/Modules.
* Rename a modulemap test file to [...].modulemap, and teach lit that such files are tests.
llvm-svn: 226875
Diffstat (limited to 'clang/test/Modules/macro-reexport/module.modulemap')
-rw-r--r-- | clang/test/Modules/macro-reexport/module.modulemap | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/clang/test/Modules/macro-reexport/module.modulemap b/clang/test/Modules/macro-reexport/module.modulemap deleted file mode 100644 index 896bda041c3..00000000000 --- a/clang/test/Modules/macro-reexport/module.modulemap +++ /dev/null @@ -1,23 +0,0 @@ -module b { - module b2 { header "b2.h" export * } - module b1 { header "b1.h" export * } -} -module a { - module a1 { header "a1.h" export * } - module a2 { header "a2.h" export * } -} -module c { - module c1 { header "c1.h" export * } -} -module d { - module d1 { header "d1.h" export * } - module d2 { header "d2.h" export * } -} -module e { - module e1 { header "e1.h" export * } - module e2 { header "e2.h" export * } -} -module f { - module f1 { header "f1.h" export * } - module f2 { header "f2.h" export * } -} |