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 ef51200 [clang-rename] apply stylistic fixes new 4d2e790 [clang-rename] fix testset
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: test/clang-rename/ClassFindByName.cpp | 11 ++++++++ .../clang-rename/ClassNameInFunctionDefenition.cpp | 17 ++++++++++++ test/clang-rename/ClassReplacements.cpp | 11 ++++++++ test/clang-rename/ClassSimpleRenaming.cpp | 13 ++++++++++ test/clang-rename/ComplicatedClassTest.cpp | 30 ++++++++++++++++++++++ test/clang-rename/ConstCastExpr.cpp | 9 ++++--- test/clang-rename/ConstructExpr.cpp | 14 +++++----- .../{CtorDefTest.cpp => CtorFindByDeclaration.cpp} | 12 ++++----- .../{CtorDefTest.cpp => CtorFindByDefinition.cpp} | 12 ++++----- test/clang-rename/CtorInitializer.cpp | 16 ++++++++++++ test/clang-rename/DeclRefExpr.cpp | 24 ++++++++--------- test/clang-rename/DtorDeclaration.cpp | 14 ++++++++++ .../{DtorDefTest.cpp => DtorDefinition.cpp} | 13 ++++------ test/clang-rename/Field.cpp | 14 ++++++++++ test/clang-rename/MemberExprMacro.cpp | 28 +++++++++----------- test/clang-rename/NoNewName.cpp | 20 ++------------- test/clang-rename/TemplateTypename.cpp | 1 + test/clang-rename/UserDefinedConversion.cpp | 1 + .../UserDefinedConversionFindByTypeDeclaration.cpp | 24 +++++++++++++++++ test/clang-rename/Variable.cpp | 27 +++++++++++++++++++ 20 files changed, 229 insertions(+), 82 deletions(-) create mode 100644 test/clang-rename/ClassFindByName.cpp create mode 100644 test/clang-rename/ClassNameInFunctionDefenition.cpp create mode 100644 test/clang-rename/ClassReplacements.cpp create mode 100644 test/clang-rename/ClassSimpleRenaming.cpp create mode 100644 test/clang-rename/ComplicatedClassTest.cpp copy test/clang-rename/{CtorDefTest.cpp => CtorFindByDeclaration.cpp} (51%) copy test/clang-rename/{CtorDefTest.cpp => CtorFindByDefinition.cpp} (51%) create mode 100644 test/clang-rename/CtorInitializer.cpp create mode 100644 test/clang-rename/DtorDeclaration.cpp copy test/clang-rename/{DtorDefTest.cpp => DtorDefinition.cpp} (50%) create mode 100644 test/clang-rename/Field.cpp create mode 100644 test/clang-rename/UserDefinedConversionFindByTypeDeclaration.cpp create mode 100644 test/clang-rename/Variable.cpp