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/CoverageNoProblems/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/CoverageNoProblems/module.modulemap')
-rw-r--r-- | clang-tools-extra/test/modularize/Inputs/CoverageNoProblems/module.modulemap | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/clang-tools-extra/test/modularize/Inputs/CoverageNoProblems/module.modulemap b/clang-tools-extra/test/modularize/Inputs/CoverageNoProblems/module.modulemap new file mode 100644 index 00000000000..97ad285cd23 --- /dev/null +++ b/clang-tools-extra/test/modularize/Inputs/CoverageNoProblems/module.modulemap @@ -0,0 +1,10 @@ +// module.map
+
+module Level1A {
+ header "Includes1/Level1A.h"
+ export *
+}
+module Level2A {
+ header "Includes2/Level2A.h"
+ export *
+}
|