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 b0b5526c [clang-doc] Adding PublicOnly flag new 70d90389 [clang-doc] Create a script to generate tests
The 1 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/gen_tests.py | 200 ++++++++ test/clang-doc/bc-comment.cpp | 349 +++++++------- test/clang-doc/bc-namespace.cpp | 204 +++++---- test/clang-doc/bc-record.cpp | 503 ++++++++++++--------- test/clang-doc/mapper-class-in-class.cpp | 40 -- test/clang-doc/mapper-class-in-function.cpp | 49 -- test/clang-doc/mapper-class.cpp | 19 - test/clang-doc/mapper-comment.cpp | 72 +++ test/clang-doc/mapper-comments.cpp | 181 -------- test/clang-doc/mapper-enum.cpp | 36 -- test/clang-doc/mapper-function.cpp | 31 -- test/clang-doc/mapper-method.cpp | 59 --- test/clang-doc/mapper-namespace.cpp | 147 +++++- test/clang-doc/mapper-record.cpp | 317 +++++++++++++ test/clang-doc/mapper-struct.cpp | 25 - test/clang-doc/mapper-union.cpp | 33 -- test/clang-doc/test_cases/comment.cpp | 28 ++ .../a.h => clang-doc/test_cases/compile_flags.txt} | 0 test/clang-doc/test_cases/namespace.cpp | 26 ++ test/clang-doc/test_cases/record.cpp | 40 ++ test/clang-doc/yaml-comment.cpp | 136 ++++++ test/clang-doc/yaml-comments.cpp | 129 ------ test/clang-doc/yaml-namespace.cpp | 161 +++---- test/clang-doc/yaml-record.cpp | 438 +++++++++--------- 24 files changed, 1834 insertions(+), 1389 deletions(-) create mode 100644 clang-doc/gen_tests.py delete mode 100644 test/clang-doc/mapper-class-in-class.cpp delete mode 100644 test/clang-doc/mapper-class-in-function.cpp delete mode 100644 test/clang-doc/mapper-class.cpp create mode 100644 test/clang-doc/mapper-comment.cpp delete mode 100644 test/clang-doc/mapper-comments.cpp delete mode 100644 test/clang-doc/mapper-enum.cpp delete mode 100644 test/clang-doc/mapper-function.cpp delete mode 100644 test/clang-doc/mapper-method.cpp create mode 100644 test/clang-doc/mapper-record.cpp delete mode 100644 test/clang-doc/mapper-struct.cpp delete mode 100644 test/clang-doc/mapper-union.cpp create mode 100644 test/clang-doc/test_cases/comment.cpp copy test/{clang-tidy/Inputs/Headers/a.h => clang-doc/test_cases/compile_flags.txt [...] create mode 100644 test/clang-doc/test_cases/namespace.cpp create mode 100644 test/clang-doc/test_cases/record.cpp create mode 100644 test/clang-doc/yaml-comment.cpp delete mode 100644 test/clang-doc/yaml-comments.cpp