This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang-tools-extra.
from 8c677006 Revert "[clangd] Refactor JSON-over-stdin/stdout code into Tr [...] new 30f22487 [clang-doc] Add unit tests for serialization new e99be39e [clang-doc] Add unit tests for bitcode new f52a2166 [clang-doc] Add unit tests for merging new 9a9edef9 [clang-doc] Add unit tests for YAML generation new 89cee0b2 [clang-doc] Add unit tests for Markdown generation new e94df0cc [clang-doc] Limit integration tests
The 6 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: clang-doc/BitcodeWriter.cpp | 6 +- clang-doc/gen_tests.py | 227 --------- clang-doc/tool/ClangDocMain.cpp | 78 +--- test/clang-doc/bc-comment.cpp | 204 -------- test/clang-doc/bc-linkage.cpp | 700 ---------------------------- test/clang-doc/bc-module.cpp | 87 ---- test/clang-doc/bc-namespace.cpp | 121 ----- test/clang-doc/bc-record.cpp | 289 ------------ test/clang-doc/mapper-comment.cpp | 74 --- test/clang-doc/mapper-linkage.cpp | 285 ----------- test/clang-doc/mapper-module.cpp | 51 -- test/clang-doc/mapper-namespace.cpp | 94 ---- test/clang-doc/mapper-record.cpp | 216 --------- test/clang-doc/md-comment.cpp | 49 -- test/clang-doc/md-linkage.cpp | 144 ------ test/clang-doc/md-module.cpp | 26 -- test/clang-doc/md-namespace.cpp | 48 -- test/clang-doc/md-record.cpp | 106 ----- test/clang-doc/public-comment.cpp | 138 ------ test/clang-doc/public-linkage.cpp | 299 ------------ test/clang-doc/public-module.cpp | 51 -- test/clang-doc/public-namespace.cpp | 96 ---- test/clang-doc/public-record.cpp | 220 --------- test/clang-doc/single-file-public.cpp | 49 ++ test/clang-doc/single-file.cpp | 31 ++ test/clang-doc/test_cases/comment.cpp | 28 -- test/clang-doc/test_cases/compile_flags.txt | 0 test/clang-doc/test_cases/linkage.cpp | 95 ---- test/clang-doc/test_cases/module.cpp | 15 - test/clang-doc/test_cases/namespace.cpp | 26 -- test/clang-doc/test_cases/record.cpp | 42 -- test/clang-doc/yaml-comment.cpp | 138 ------ test/clang-doc/yaml-linkage.cpp | 424 ----------------- test/clang-doc/yaml-module.cpp | 63 --- test/clang-doc/yaml-namespace.cpp | 96 ---- test/clang-doc/yaml-record.cpp | 234 ---------- unittests/CMakeLists.txt | 1 + unittests/clang-doc/BitcodeTest.cpp | 260 +++++++++++ unittests/clang-doc/CMakeLists.txt | 33 ++ unittests/clang-doc/ClangDocTest.cpp | 182 ++++++++ unittests/clang-doc/ClangDocTest.h | 51 ++ unittests/clang-doc/MDGeneratorTest.cpp | 361 ++++++++++++++ unittests/clang-doc/MergeTest.cpp | 236 ++++++++++ unittests/clang-doc/SerializeTest.cpp | 346 ++++++++++++++ unittests/clang-doc/YAMLGeneratorTest.cpp | 427 +++++++++++++++++ 45 files changed, 1993 insertions(+), 4754 deletions(-) delete mode 100644 clang-doc/gen_tests.py delete mode 100644 test/clang-doc/bc-comment.cpp delete mode 100644 test/clang-doc/bc-linkage.cpp delete mode 100644 test/clang-doc/bc-module.cpp delete mode 100644 test/clang-doc/bc-namespace.cpp delete mode 100644 test/clang-doc/bc-record.cpp delete mode 100644 test/clang-doc/mapper-comment.cpp delete mode 100644 test/clang-doc/mapper-linkage.cpp delete mode 100644 test/clang-doc/mapper-module.cpp delete mode 100644 test/clang-doc/mapper-namespace.cpp delete mode 100644 test/clang-doc/mapper-record.cpp delete mode 100644 test/clang-doc/md-comment.cpp delete mode 100644 test/clang-doc/md-linkage.cpp delete mode 100644 test/clang-doc/md-module.cpp delete mode 100644 test/clang-doc/md-namespace.cpp delete mode 100644 test/clang-doc/md-record.cpp delete mode 100644 test/clang-doc/public-comment.cpp delete mode 100644 test/clang-doc/public-linkage.cpp delete mode 100644 test/clang-doc/public-module.cpp delete mode 100644 test/clang-doc/public-namespace.cpp delete mode 100644 test/clang-doc/public-record.cpp create mode 100644 test/clang-doc/single-file-public.cpp create mode 100644 test/clang-doc/single-file.cpp delete mode 100644 test/clang-doc/test_cases/comment.cpp delete mode 100644 test/clang-doc/test_cases/compile_flags.txt delete mode 100644 test/clang-doc/test_cases/linkage.cpp delete mode 100644 test/clang-doc/test_cases/module.cpp delete mode 100644 test/clang-doc/test_cases/namespace.cpp delete mode 100644 test/clang-doc/test_cases/record.cpp delete mode 100644 test/clang-doc/yaml-comment.cpp delete mode 100644 test/clang-doc/yaml-linkage.cpp delete mode 100644 test/clang-doc/yaml-module.cpp delete mode 100644 test/clang-doc/yaml-namespace.cpp delete mode 100644 test/clang-doc/yaml-record.cpp create mode 100644 unittests/clang-doc/BitcodeTest.cpp create mode 100644 unittests/clang-doc/CMakeLists.txt create mode 100644 unittests/clang-doc/ClangDocTest.cpp create mode 100644 unittests/clang-doc/ClangDocTest.h create mode 100644 unittests/clang-doc/MDGeneratorTest.cpp create mode 100644 unittests/clang-doc/MergeTest.cpp create mode 100644 unittests/clang-doc/SerializeTest.cpp create mode 100644 unittests/clang-doc/YAMLGeneratorTest.cpp