summaryrefslogtreecommitdiffstats
path: root/test/modularize
diff options
context:
space:
mode:
authorJohn Thompson <John.Thompson.JTSoftware@gmail.com>2015-02-18 17:08:00 +0000
committerJohn Thompson <John.Thompson.JTSoftware@gmail.com>2015-02-18 17:08:00 +0000
commitc9ab0dfd9f03a9f322761fcb17a8439fb2287f6e (patch)
tree3f6dca4204eea0bf64d081e447588fe31511aae1 /test/modularize
parent6ef1a5220861250ecbf109f0063f0d05cc2dd195 (diff)
Fixed missing checkins.
git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@229699 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/modularize')
-rw-r--r--test/modularize/Inputs/NoProblems.modulemap9
-rw-r--r--test/modularize/Inputs/ProblemsDuplicate.modulemap9
2 files changed, 18 insertions, 0 deletions
diff --git a/test/modularize/Inputs/NoProblems.modulemap b/test/modularize/Inputs/NoProblems.modulemap
new file mode 100644
index 00000000..82029c1e
--- /dev/null
+++ b/test/modularize/Inputs/NoProblems.modulemap
@@ -0,0 +1,9 @@
+// NoProblems.modulemap
+module SomeTypes {
+ header "SomeTypes.h"
+ export *
+}
+module SomeDecls {
+ header "SomeDecls.h"
+ export *
+}
diff --git a/test/modularize/Inputs/ProblemsDuplicate.modulemap b/test/modularize/Inputs/ProblemsDuplicate.modulemap
new file mode 100644
index 00000000..ff1d2f52
--- /dev/null
+++ b/test/modularize/Inputs/ProblemsDuplicate.modulemap
@@ -0,0 +1,9 @@
+// ProblemsDuplicate.modulemap
+module DuplicateHeader1 {
+ header "DuplicateHeader1.h"
+ export *
+}
+module DuplicateHeader2 {
+ header "DuplicateHeader2.h"
+ export *
+}