diff options
author | John Thompson <John.Thompson.JTSoftware@gmail.com> | 2015-02-19 16:47:27 +0000 |
---|---|---|
committer | John Thompson <John.Thompson.JTSoftware@gmail.com> | 2015-02-19 16:47:27 +0000 |
commit | 8eb8d9367291c65b7f508bbc1555e7606f01b554 (patch) | |
tree | 3539d8a785f824c5a6dd57b203cac84bead6dbcc /clang-tools-extra/test/modularize/Inputs/CoverageProblems/module.modulemap | |
parent | be5680f98553854eb637d5113374cd20772ab342 (diff) | |
download | bcm5719-llvm-8eb8d9367291c65b7f508bbc1555e7606f01b554.tar.gz bcm5719-llvm-8eb8d9367291c65b7f508bbc1555e7606f01b554.zip |
Added module map coverage support, extracted from module-map-checker.
llvm-svn: 229869
Diffstat (limited to 'clang-tools-extra/test/modularize/Inputs/CoverageProblems/module.modulemap')
-rw-r--r-- | clang-tools-extra/test/modularize/Inputs/CoverageProblems/module.modulemap | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/clang-tools-extra/test/modularize/Inputs/CoverageProblems/module.modulemap b/clang-tools-extra/test/modularize/Inputs/CoverageProblems/module.modulemap new file mode 100644 index 00000000000..af529aec281 --- /dev/null +++ b/clang-tools-extra/test/modularize/Inputs/CoverageProblems/module.modulemap @@ -0,0 +1,30 @@ +// module.map
+
+module Level1A {
+ header "Level1A.h"
+ export *
+}
+module Level1B {
+ header "Level1B.h"
+ export *
+ module Level2B {
+ header "Level2B.h"
+ export *
+ }
+}
+module Level2A {
+ header "Level2A.h"
+ export *
+}
+module UmbrellaDirectoryModule {
+ umbrella "UmbrellaSub"
+}
+module UmbrellaHeaderModule {
+ umbrella header "UmbrellaFile.h"
+}
+/*
+module NoHeader {
+ header "NoHeader.h"
+ export *
+}
+*/
|