Initial checkin of new module-map-checker tool.
authorJohn Thompson <John.Thompson.JTSoftware@gmail.com>
Tue, 7 Jan 2014 15:22:08 +0000 (15:22 +0000)
committerJohn Thompson <John.Thompson.JTSoftware@gmail.com>
Tue, 7 Jan 2014 15:22:08 +0000 (15:22 +0000)
commite0756452a3126d93768cc8179d3835974bb769b4
tree35e7c44d451f358d89acd5a2e2b9e43c362c3c78
parentb098f5c7b834ae663287e466279544158c3f18be
Initial checkin of new module-map-checker tool.

llvm-svn: 198693
28 files changed:
clang-tools-extra/CMakeLists.txt
clang-tools-extra/Makefile
clang-tools-extra/docs/index.rst
clang-tools-extra/docs/module-map-checker.rst [new file with mode: 0644]
clang-tools-extra/module-map-checker/CMakeLists.txt [new file with mode: 0644]
clang-tools-extra/module-map-checker/Makefile [new file with mode: 0644]
clang-tools-extra/module-map-checker/ModuleMapChecker.cpp [new file with mode: 0644]
clang-tools-extra/module-map-checker/ModuleMapChecker.h [new file with mode: 0644]
clang-tools-extra/test/CMakeLists.txt
clang-tools-extra/test/lit.cfg
clang-tools-extra/test/module-map-checker/Inputs/includes-test/Includes1/Level1A.h [new file with mode: 0644]
clang-tools-extra/test/module-map-checker/Inputs/includes-test/Includes2/Level2A.h [new file with mode: 0644]
clang-tools-extra/test/module-map-checker/Inputs/includes-test/NonIncludes/Level3A.h [new file with mode: 0644]
clang-tools-extra/test/module-map-checker/Inputs/includes-test/module.map [new file with mode: 0644]
clang-tools-extra/test/module-map-checker/Inputs/main-test/Level1A.h [new file with mode: 0644]
clang-tools-extra/test/module-map-checker/Inputs/main-test/Level1B.h [new file with mode: 0644]
clang-tools-extra/test/module-map-checker/Inputs/main-test/Level2A.h [new file with mode: 0644]
clang-tools-extra/test/module-map-checker/Inputs/main-test/Level2B.h [new file with mode: 0644]
clang-tools-extra/test/module-map-checker/Inputs/main-test/Level3A.h [new file with mode: 0644]
clang-tools-extra/test/module-map-checker/Inputs/main-test/Sub/Level3B.h [new file with mode: 0644]
clang-tools-extra/test/module-map-checker/Inputs/main-test/UmbrellaFile.h [new file with mode: 0644]
clang-tools-extra/test/module-map-checker/Inputs/main-test/UmbrellaInclude1.h [new file with mode: 0644]
clang-tools-extra/test/module-map-checker/Inputs/main-test/UmbrellaInclude2.h [new file with mode: 0644]
clang-tools-extra/test/module-map-checker/Inputs/main-test/UmbrellaSub/Umbrell1.h [new file with mode: 0644]
clang-tools-extra/test/module-map-checker/Inputs/main-test/UmbrellaSub/Umbrell2.h [new file with mode: 0644]
clang-tools-extra/test/module-map-checker/Inputs/main-test/module.map [new file with mode: 0644]
clang-tools-extra/test/module-map-checker/includes.module-map-checker [new file with mode: 0644]
clang-tools-extra/test/module-map-checker/main-test.module-map-checker [new file with mode: 0644]