[clang-tidy] Organize test files into subdirectories by module (NFC)
authorRichard <legalize@xmission.com>
Fri, 17 Jun 2022 01:02:47 +0000 (19:02 -0600)
committerRichard <legalize@xmission.com>
Wed, 22 Jun 2022 18:13:34 +0000 (12:13 -0600)
commit89a1d03e2b379e325daa5249411e414bbd995b5e
tree9b1c9bad407c0fab8815cdd4780b80ace670050e
parent130167ed1effa36aa56c83c4293e732e5163d993
[clang-tidy] Organize test files into subdirectories by module (NFC)

Eliminate clutter by reorganizing the Lit test files for clang-tidy:
- Move checkers/<module>-* to checkers/<module>/*.
- Move module specific inputs from Inputs to <module>/Inputs.  Remove
  any module prefix from the file or subdirectory name as they are no
  longer needed.
- Introduce a Lit substitution %clang_tidy_headers for the system
  headers in checkers/Inputs/Headers and use this throughout.  This
  avoids referencing system headers through a relative path to the
  parent directory and makes it clear that these fake system headers are
  shared among all modules.
- Update add_new_check.py to follow the above conventions when creating
  the boiler plate test files for a new check.
- Update Contributing.rst to describe per-module Inputs directory and
  fix link to test source code.

Differential Revision: https://reviews.llvm.org/D128072
693 files changed:
clang-tools-extra/clang-tidy/add_new_check.py
clang-tools-extra/docs/clang-tidy/Contributing.rst
clang-tools-extra/test/clang-tidy/checkers/abseil/Inputs/absl/external-file.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/absl/external-file.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/Inputs/absl/flags/internal-file.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/absl/flags/internal-file.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/Inputs/absl/strings/internal-file.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/absl/strings/internal-file.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/Inputs/absl/time/time.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/absl/time/time.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/cleanup-ctad.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-cleanup-ctad.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/duration-addition.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-duration-addition.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/duration-comparison.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-duration-comparison.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/duration-conversion-cast.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-duration-conversion-cast.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/duration-division.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-duration-division.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/duration-factory-float.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-duration-factory-float.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/duration-factory-scale.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-duration-factory-scale.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/duration-subtraction.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-duration-subtraction.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/duration-unnecessary-conversion.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-duration-unnecessary-conversion.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/faster-strsplit-delimiter.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-faster-strsplit-delimiter.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/no-internal-dependencies.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-no-internal-dependencies.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/no-namespace.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-no-namespace.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/redundant-strcat-calls.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-redundant-strcat-calls.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/str-cat-append.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-str-cat-append.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/string-find-startswith.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-string-find-startswith.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/string-find-str-contains.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-string-find-str-contains.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/time-comparison.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-time-comparison.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/time-subtraction.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-time-subtraction.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/abseil/upgrade-duration-conversions.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/abseil-upgrade-duration-conversions.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/Verilog.cl [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/Verilog.cl with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/kernel.cl [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/kernel.cl with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/kernel.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/kernel.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/other_Verilog.cl [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/other_Verilog.cl with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/otherdir/vhdl.cl [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/otherdir/vhdl.cl with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/otherthing.cl [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/otherthing.cl with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/some/dir/kernel.cl [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/some/dir/kernel.cl with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/some/kernel.cl/foo.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/some/kernel.cl/foo.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/some/verilog.cl/foo.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/some/verilog.cl/foo.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/some/vhdl.cl/foo.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/some/vhdl.cl/foo.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/some_kernel.cl [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/some_kernel.cl with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/somedir/verilog.cl [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/somedir/verilog.cl with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/thing.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/thing.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/uppercase/KERNEL.cl [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/uppercase/KERNEL.cl with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/uppercase/VHDL.cl [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/uppercase/VHDL.cl with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/uppercase/vERILOG.cl [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/uppercase/vERILOG.cl with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/verilog.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/verilog.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/vhdl.CL [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/vhdl.CL with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/vhdl.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/vhdl.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/Inputs/kernel-name-restriction/vhdl_number_two.cl [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/altera-kernel-name-restriction/vhdl_number_two.cl with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/id-dependent-backward-branch.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/altera-id-dependent-backward-branch.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/kernel-name-restriction.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/altera-kernel-name-restriction.cpp with 96% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/single-work-item-barrier.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/altera-single-work-item-barrier.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/struct-pack-align-invalid-decl-no-crash.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/altera-struct-pack-align-invalid-decl-no-crash.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/struct-pack-align-no-crash.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/altera-struct-pack-align-no-crash.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/struct-pack-align.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/altera-struct-pack-align.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/altera/unroll-loops.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/altera-unroll-loops.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/android/cloexec-accept.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/android-cloexec-accept.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/android/cloexec-accept4.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/android-cloexec-accept4.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/android/cloexec-creat.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/android-cloexec-creat.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/android/cloexec-dup.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/android-cloexec-dup.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/android/cloexec-epoll-create.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/android-cloexec-epoll-create.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/android/cloexec-epoll-create1.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/android-cloexec-epoll-create1.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/android/cloexec-fopen.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/android-cloexec-fopen.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/android/cloexec-inotify-init.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/android-cloexec-inotify-init.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/android/cloexec-inotify-init1.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/android-cloexec-inotify-init1.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/android/cloexec-memfd-create.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/android-cloexec-memfd-create.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/android/cloexec-open.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/android-cloexec-open.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/android/cloexec-pipe.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/android-cloexec-pipe.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/android/cloexec-pipe2.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/android-cloexec-pipe2.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/android/cloexec-socket.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/android-cloexec-socket.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/android/comparison-in-temp-failure-retry-custom-macro.c [moved from clang-tools-extra/test/clang-tidy/checkers/android-comparison-in-temp-failure-retry-custom-macro.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/android/comparison-in-temp-failure-retry.c [moved from clang-tools-extra/test/clang-tidy/checkers/android-comparison-in-temp-failure-retry.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/boost/use-to-string.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/boost-use-to-string.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/Inputs/argument-comment/header-with-decl.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/bugprone-argument-comment/header-with-decl.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/Inputs/argument-comment/system-header-with-decl.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/bugprone-argument-comment/system-header-with-decl.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/Inputs/not-null-terminated-result/not-null-terminated-result-c.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/bugprone-not-null-terminated-result/not-null-terminated-result-c.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/Inputs/not-null-terminated-result/not-null-terminated-result-cxx.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/bugprone-not-null-terminated-result/not-null-terminated-result-cxx.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/Inputs/reserved-identifier/system/system-header.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/bugprone-reserved-identifier/system/system-header.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/Inputs/reserved-identifier/user-header.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/bugprone-reserved-identifier/user-header.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/Inputs/unchecked-optional-access/absl/types/optional.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/absl/types/optional.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/argument-comment-gmock.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-argument-comment-gmock.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/argument-comment-ignore-single-argument.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-argument-comment-ignore-single-argument.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/argument-comment-literals.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-argument-comment-literals.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/argument-comment-strict.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-argument-comment-strict.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/argument-comment.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-argument-comment.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/assert-side-effect.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-assert-side-effect.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/assert-side-effect.m [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-assert-side-effect.m with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/bad-signal-to-kill-thread-sigterm-not-a-literal.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-bad-signal-to-kill-thread-sigterm-not-a-literal.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/bad-signal-to-kill-thread-undef-sigterm.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-bad-signal-to-kill-thread-undef-sigterm.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/bad-signal-to-kill-thread.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-bad-signal-to-kill-thread.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/bool-pointer-implicit-conversion.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-bool-pointer-implicit-conversion.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/branch-clone-if-constexpr-template.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-branch-clone-if-constexpr-template.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/branch-clone-macro-crash.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-branch-clone-macro-crash.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/branch-clone.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-branch-clone.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/copy-constructor-init.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-copy-constructor-init.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/dangling-handle.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-dangling-handle.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/dynamic-static-initializers.hpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-dynamic-static-initializers.hpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/easily-swappable-parameters-ignore-default.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-easily-swappable-parameters-ignore-default.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/easily-swappable-parameters-ignore.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-easily-swappable-parameters-ignore.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/easily-swappable-parameters-implicit-qualifiers.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-easily-swappable-parameters-implicit-qualifiers.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/easily-swappable-parameters-implicits.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-easily-swappable-parameters-implicits.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/easily-swappable-parameters-implicits.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-easily-swappable-parameters-implicits.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/easily-swappable-parameters-len2.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-easily-swappable-parameters-len2.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/easily-swappable-parameters-len3.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-easily-swappable-parameters-len3.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/easily-swappable-parameters-prefixsuffixname.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-easily-swappable-parameters-prefixsuffixname.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/easily-swappable-parameters-qualifiermixing.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-easily-swappable-parameters-qualifiermixing.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/easily-swappable-parameters-relatedness.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-easily-swappable-parameters-relatedness.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/easily-swappable-parameters-relatedness.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-easily-swappable-parameters-relatedness.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/easily-swappable-parameters.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-easily-swappable-parameters.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/exception-escape-openmp.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-exception-escape-openmp.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/exception-escape.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-exception-escape.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/fold-init-type.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-fold-init-type.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/forward-declaration-namespace.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-forward-declaration-namespace.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/forwarding-reference-overload.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-forwarding-reference-overload.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/implicit-widening-of-multiplication-result-array-subscript-expression.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-implicit-widening-of-multiplication-result-array-subscript-expression.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/implicit-widening-of-multiplication-result-char.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-implicit-widening-of-multiplication-result-char.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/implicit-widening-of-multiplication-result-extint.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-implicit-widening-of-multiplication-result-extint.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/implicit-widening-of-multiplication-result-int.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-implicit-widening-of-multiplication-result-int.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/implicit-widening-of-multiplication-result-pointer-offset.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-implicit-widening-of-multiplication-result-pointer-offset.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/implicit-widening-of-multiplication-result-short.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-implicit-widening-of-multiplication-result-short.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/inaccurate-erase.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-inaccurate-erase.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/incorrect-roundings.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-incorrect-roundings.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/infinite-loop.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-infinite-loop.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/infinite-loop.mm [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-infinite-loop.mm with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/integer-division.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-integer-division.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/lambda-function-name.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-lambda-function-name.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/macro-parentheses-cmdline.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-macro-parentheses-cmdline.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/macro-parentheses.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-macro-parentheses.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/macro-repeated-side-effects.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-macro-repeated-side-effects.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/misplaced-operator-in-strlen-in-alloc.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-misplaced-operator-in-strlen-in-alloc.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/misplaced-operator-in-strlen-in-alloc.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-misplaced-operator-in-strlen-in-alloc.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/misplaced-pointer-arithmetic-in-alloc.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-misplaced-pointer-arithmetic-in-alloc.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/misplaced-pointer-arithmetic-in-alloc.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-misplaced-pointer-arithmetic-in-alloc.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/misplaced-widening-cast-explicit-only.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-misplaced-widening-cast-explicit-only.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/misplaced-widening-cast-implicit-enabled.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-misplaced-widening-cast-implicit-enabled.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/move-forwarding-reference.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-move-forwarding-reference.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/multiple-statement-macro.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-multiple-statement-macro.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/no-escape.m [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-no-escape.m with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/not-null-terminated-result-in-initialization-strlen.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-not-null-terminated-result-in-initialization-strlen.c with 97% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/not-null-terminated-result-memcpy-before-safe.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-not-null-terminated-result-memcpy-before-safe.c with 97% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/not-null-terminated-result-memcpy-safe-cxx.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-not-null-terminated-result-memcpy-safe-cxx.cpp with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/not-null-terminated-result-memcpy-safe-other.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-not-null-terminated-result-memcpy-safe-other.c with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/not-null-terminated-result-memcpy-safe.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-not-null-terminated-result-memcpy-safe.c with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/not-null-terminated-result-stdc-want-lib-ext1-not-a-literal.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-not-null-terminated-result-stdc-want-lib-ext1-not-a-literal.c with 88% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/not-null-terminated-result-strlen.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-not-null-terminated-result-strlen.c with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/not-null-terminated-result-undef-stdc-want-lib-ext1.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-not-null-terminated-result-undef-stdc-want-lib-ext1.c with 88% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/not-null-terminated-result-wcslen.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-not-null-terminated-result-wcslen.cpp with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/not-null-terminated-result-wmemcpy-safe-cxx.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-not-null-terminated-result-wmemcpy-safe-cxx.cpp with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/parent-virtual-call.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-parent-virtual-call.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/posix-return.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-posix-return.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/redundant-branch-condition.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-redundant-branch-condition.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/reserved-identifier-c.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-reserved-identifier-c.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/reserved-identifier-invert.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-reserved-identifier-invert.cpp with 95% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/reserved-identifier.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-reserved-identifier.cpp with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/shared-ptr-array-mismatch.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-shared-ptr-array-mismatch.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/signal-handler-minimal.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-signal-handler-minimal.c with 95% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/signal-handler-posix.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-signal-handler-posix.c with 94% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/signal-handler.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-signal-handler.c with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/signed-char-misuse-fsigned-char.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-signed-char-misuse-fsigned-char.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/signed-char-misuse-funsigned-char.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-signed-char-misuse-funsigned-char.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/signed-char-misuse-with-option.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-signed-char-misuse-with-option.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/signed-char-misuse.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-signed-char-misuse.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/sizeof-container.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-sizeof-container.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/sizeof-expression.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-sizeof-expression.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/spuriously-wake-up-functions.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-spuriously-wake-up-functions.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/spuriously-wake-up-functions.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-spuriously-wake-up-functions.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/string-constructor.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-string-constructor.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/string-integer-assignment.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-string-integer-assignment.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/string-literal-with-embedded-nul.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-string-literal-with-embedded-nul.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/stringview-nullptr.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-stringview-nullptr.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/suspicious-enum-usage-strict.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-suspicious-enum-usage-strict.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/suspicious-enum-usage.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-suspicious-enum-usage.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/suspicious-include.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-suspicious-include.cpp with 95% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/suspicious-memory-comparison-32bits.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-suspicious-memory-comparison-32bits.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/suspicious-memory-comparison.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-suspicious-memory-comparison.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/suspicious-memory-comparison.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-suspicious-memory-comparison.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/suspicious-memset-usage.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-suspicious-memset-usage.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/suspicious-memset-usage.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-suspicious-memset-usage.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/suspicious-missing-comma.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-suspicious-missing-comma.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/suspicious-semicolon-constexpr.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-suspicious-semicolon-constexpr.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/suspicious-semicolon-fail.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-suspicious-semicolon-fail.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/suspicious-semicolon.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-suspicious-semicolon.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/suspicious-string-compare.c [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-suspicious-string-compare.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/suspicious-string-compare.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-suspicious-string-compare.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/swapped-arguments.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-swapped-arguments.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/terminating-continue.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-terminating-continue.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/throw-keyword-missing.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-throw-keyword-missing.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/too-small-loop-variable-magniute-bits-upper-limit.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-too-small-loop-variable-magniute-bits-upper-limit.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/too-small-loop-variable.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-too-small-loop-variable.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/unchecked-optional-access.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-unchecked-optional-access.cpp with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/undefined-memory-manipulation.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-undefined-memory-manipulation.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/undelegated-constructor-cxx98.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-undelegated-constructor-cxx98.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/undelegated-constructor.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-undelegated-constructor.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/unhandled-exception-at-new.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-unhandled-exception-at-new.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/unhandled-self-assignment-warn-only-if-this-has-suspicious-field.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-unhandled-self-assignment-warn-only-if-this-has-suspicious-field.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/unhandled-self-assignment.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-unhandled-self-assignment.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/unused-raii-crash.mm [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-unused-raii-crash.mm with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/unused-raii.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-unused-raii.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/unused-return-value-custom.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-unused-return-value-custom.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/unused-return-value.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-unused-return-value.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/use-after-move.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-use-after-move.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/bugprone/virtual-near-miss.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/bugprone-virtual-near-miss.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/dcl21-cpp.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cert-dcl21-cpp.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/dcl58-cpp.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cert-dcl58-cpp.cpp with 97% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/env33-c.c [moved from clang-tools-extra/test/clang-tidy/checkers/cert-env33-c.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/err33-c.c [moved from clang-tools-extra/test/clang-tidy/checkers/cert-err33-c.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/err34-c.c [moved from clang-tools-extra/test/clang-tidy/checkers/cert-err34-c.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/err34-c.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cert-err34-c.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/flp30-c.c [moved from clang-tools-extra/test/clang-tidy/checkers/cert-flp30-c.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/limited-randomness.c [moved from clang-tools-extra/test/clang-tidy/checkers/cert-limited-randomness.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/limited-randomness.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cert-limited-randomness.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/mem57-cpp-cpp17.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cert-mem57-cpp-cpp17.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/mem57-cpp.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cert-mem57-cpp.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/msc32-c.c [moved from clang-tools-extra/test/clang-tidy/checkers/cert-msc32-c.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/msc51-cpp.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cert-msc51-cpp.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/oop11-cpp.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cert-oop11-cpp.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/oop54-cpp.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cert-oop54-cpp.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/oop57-cpp.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cert-oop57-cpp.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/oop58-cpp.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cert-oop58-cpp.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/setlongjmp.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cert-setlongjmp.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/static-object-exception.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cert-static-object-exception.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/str34-c.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cert-str34-c.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/throw-exception-type.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cert-throw-exception-type.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/uppercase-literal-suffix-integer.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cert-uppercase-literal-suffix-integer.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/cert/variadic-function-def.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cert-variadic-function-def.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/concurrency/mt-unsafe-any.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/concurrency-mt-unsafe-any.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/concurrency/mt-unsafe-glibc.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/concurrency-mt-unsafe-glibc.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/concurrency/mt-unsafe-posix.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/concurrency-mt-unsafe-posix.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/concurrency/thread-canceltype-asynchronous.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/concurrency-thread-canceltype-asynchronous.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/avoid-goto.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-avoid-goto.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/avoid-non-const-global-variables.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-avoid-non-const-global-variables.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/init-variables-conflict.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-init-variables-conflict.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/init-variables.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-init-variables.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/interfaces-global-init.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-interfaces-global-init.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/macro-usage-caps-only.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-macro-usage-caps-only.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/macro-usage-command-line-macros.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-macro-usage-command-line-macros.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/macro-usage-custom.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-macro-usage-custom.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/macro-usage.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-macro-usage.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/narrowing-conversions-bitfields.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-narrowing-conversions-bitfields.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/narrowing-conversions-equivalentbitwidth-option.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-narrowing-conversions-equivalentbitwidth-option.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/narrowing-conversions-ignoreconversionfromtypes-option.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-narrowing-conversions-ignoreconversionfromtypes-option.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/narrowing-conversions-intemplates-option.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-narrowing-conversions-intemplates-option.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/narrowing-conversions-long-is-32bits.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-narrowing-conversions-long-is-32bits.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/narrowing-conversions-narrowingfloatingpoint-option.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-narrowing-conversions-narrowingfloatingpoint-option.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/narrowing-conversions-narrowinginteger-option.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-narrowing-conversions-narrowinginteger-option.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/narrowing-conversions-narrowingintegertofloatingpoint-option.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-narrowing-conversions-narrowingintegertofloatingpoint-option.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/narrowing-conversions-pedanticmode-option.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-narrowing-conversions-pedanticmode-option.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/narrowing-conversions-unsigned-char.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-narrowing-conversions-unsigned-char.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/narrowing-conversions.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-narrowing-conversions.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/no-malloc-custom.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-no-malloc-custom.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/no-malloc-no-functions.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-no-malloc-no-functions.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/no-malloc.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-no-malloc.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/owning-memory-containers.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-owning-memory-containers.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/owning-memory-legacy-functions.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-owning-memory-legacy-functions.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/owning-memory.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-owning-memory.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/prefer-member-initializer-modernize-use-default-member-init-assignment.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-prefer-member-initializer-modernize-use-default-member-init-assignment.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/prefer-member-initializer-modernize-use-default-member-init.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-prefer-member-initializer-modernize-use-default-member-init.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/prefer-member-initializer.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-prefer-member-initializer.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-bounds-array-to-pointer-decay.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-bounds-array-to-pointer-decay.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-bounds-constant-array-index-c++03.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-bounds-constant-array-index-c++03.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-bounds-constant-array-index-gslheader.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-bounds-constant-array-index-gslheader.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-bounds-constant-array-index.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-bounds-constant-array-index.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-bounds-pointer-arithmetic-pr36489.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-bounds-pointer-arithmetic-pr36489.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-bounds-pointer-arithmetic.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-bounds-pointer-arithmetic.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-type-const-cast.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-type-const-cast.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-type-cstyle-cast.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-type-cstyle-cast.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-type-member-init-cxx20.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-type-member-init-cxx20.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-type-member-init-cxx98.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-type-member-init-cxx98.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-type-member-init-delayed.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-type-member-init-delayed.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-type-member-init-no-crash.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-type-member-init-no-crash.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-type-member-init-use-assignment.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-type-member-init-use-assignment.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-type-member-init.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-type-member-init.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-type-member-init.ignorearrays.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-type-member-init.ignorearrays.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-type-reinterpret-cast.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-type-reinterpret-cast.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-type-static-cast-downcast.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-type-static-cast-downcast.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-type-union-access.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-type-union-access.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-type-vararg-ms.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-type-vararg-ms.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/pro-type-vararg.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-pro-type-vararg.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/slicing.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-slicing.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/special-member-functions-allow-missing-move-when-copy-is-deleted.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-special-member-functions-allow-missing-move-when-copy-is-deleted.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/special-member-functions-cxx-03.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-special-member-functions-cxx-03.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/special-member-functions-relaxed.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-special-member-functions-relaxed.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/special-member-functions.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-special-member-functions.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/virtual-class-destructor.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines-virtual-class-destructor.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/darwin/avoid-spinlock.m [moved from clang-tools-extra/test/clang-tidy/checkers/darwin-avoid-spinlock.m with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/darwin/dispatch-once-nonstatic.mm [moved from clang-tools-extra/test/clang-tidy/checkers/darwin-dispatch-once-nonstatic.mm with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/fuchsia/default-arguments-calls.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/fuchsia-default-arguments-calls.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/fuchsia/default-arguments-declarations.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/fuchsia-default-arguments-declarations.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/fuchsia/multiple-inheritance.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/fuchsia-multiple-inheritance.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/fuchsia/overloaded-operator.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/fuchsia-overloaded-operator.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/fuchsia/statically-constructed-objects.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/fuchsia-statically-constructed-objects.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/fuchsia/trailing-return.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/fuchsia-trailing-return.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/fuchsia/virtual-inheritance.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/fuchsia-virtual-inheritance.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/Inputs/google-namespaces.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/google-namespaces.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/Inputs/gtest/gtest-typed-test.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/gtest/gtest-typed-test.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/Inputs/gtest/gtest.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/gtest/gtest.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/Inputs/gtest/nosuite/gtest/gtest-typed-test.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/gtest/nosuite/gtest/gtest-typed-test.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/Inputs/gtest/nosuite/gtest/gtest.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/gtest/nosuite/gtest/gtest.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/build-explicit-make-pair.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/google-build-explicit-make-pair.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/default-arguments.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/google-default-arguments.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/explicit-constructor.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/google-explicit-constructor.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/module.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/google-module.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/namespaces.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/google-namespaces.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/objc-avoid-nsobject-new.m [moved from clang-tools-extra/test/clang-tidy/checkers/google-objc-avoid-nsobject-new.m with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/objc-avoid-throwing-exception.m [moved from clang-tools-extra/test/clang-tidy/checkers/google-objc-avoid-throwing-exception.m with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/objc-function-naming.m [moved from clang-tools-extra/test/clang-tidy/checkers/google-objc-function-naming.m with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/objc-function-naming.mm [moved from clang-tools-extra/test/clang-tidy/checkers/google-objc-function-naming.mm with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/objc-global-variable-declaration.m [moved from clang-tools-extra/test/clang-tidy/checkers/google-objc-global-variable-declaration.m with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/objc-global-variable-declaration.mm [moved from clang-tools-extra/test/clang-tidy/checkers/google-objc-global-variable-declaration.mm with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/overloaded-unary-and.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/google-overloaded-unary-and.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/readability-casting.c [moved from clang-tools-extra/test/clang-tidy/checkers/google-readability-casting.c with 96% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/readability-casting.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/google-readability-casting.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/readability-casting.mm [moved from clang-tools-extra/test/clang-tidy/checkers/google-readability-casting.mm with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/readability-namespace-comments-c++17.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/google-readability-namespace-comments-c++17.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/readability-namespace-comments.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/google-readability-namespace-comments.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/readability-todo.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/google-readability-todo.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/runtime-int-std.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/google-runtime-int-std.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/runtime-int.c [moved from clang-tools-extra/test/clang-tidy/checkers/google-runtime-int.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/runtime-int.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/google-runtime-int.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/runtime-int.m [moved from clang-tools-extra/test/clang-tidy/checkers/google-runtime-int.m with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/google/upgrade-googletest-case.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/google-upgrade-googletest-case.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/hicpp/exception-baseclass.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/hicpp-exception-baseclass.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/hicpp/multiway-paths-covered-else.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/hicpp-multiway-paths-covered-else.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/hicpp/multiway-paths-covered.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/hicpp-multiway-paths-covered.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/hicpp/no-assembler-msvc.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/hicpp-no-assembler-msvc.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/hicpp/no-assembler.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/hicpp-no-assembler.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/hicpp/signed-bitwise-bug34747.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/hicpp-signed-bitwise-bug34747.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/hicpp/signed-bitwise-integer-literals.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/hicpp-signed-bitwise-integer-literals.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/hicpp/signed-bitwise-standard-types.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/hicpp-signed-bitwise-standard-types.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/hicpp/signed-bitwise-standard-types.h [moved from clang-tools-extra/test/clang-tidy/checkers/hicpp-signed-bitwise-standard-types.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/hicpp/signed-bitwise.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/hicpp-signed-bitwise.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/linuxkernel/must-check-errs.c [moved from clang-tools-extra/test/clang-tidy/checkers/linuxkernel-must-check-errs.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/llvm/include-order.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/llvm-include-order.cpp with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/llvm/prefer-isa-or-dyn-cast-in-conditionals.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/llvm-prefer-isa-or-dyn-cast-in-conditionals.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/llvm/prefer-register-over-unsigned.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/llvm-prefer-register-over-unsigned.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/llvm/prefer-register-over-unsigned2.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/llvm-prefer-register-over-unsigned2.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/llvm/prefer-register-over-unsigned3.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/llvm-prefer-register-over-unsigned3.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/llvm/qualified-auto.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/llvm-qualified-auto.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/llvm/twine-local.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/llvm-twine-local.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/llvmlibc/Inputs/resource/include/stdatomic.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/llvmlibc/resource/include/stdatomic.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/llvmlibc/Inputs/resource/include/stddef.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/portability-restrict-system-includes/system/stddef.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/llvmlibc/Inputs/system/stdio.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/stdio.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/llvmlibc/Inputs/system/stdlib.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/stdlib.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/llvmlibc/Inputs/system/string.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/string.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/llvmlibc/callee-namespace.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/llvmlibc-callee-namespace.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/llvmlibc/implementation-in-namespace.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/llvmlibc-implementation-in-namespace.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/llvmlibc/restrict-system-libc-headers.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/llvmlibc-restrict-system-libc-headers.cpp with 81% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/Inputs/unused-using-decls.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/unused-using-decls.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/confusable-identifiers.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-confusable-identifiers.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/definitions-in-headers-1z.hpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-definitions-in-headers-1z.hpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/definitions-in-headers.hpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-definitions-in-headers.hpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/misleading-bidirectional.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-misleading-bidirectional.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/misleading-identifier.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-misleading-identifier.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/misplaced-const-cxx17.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-misplaced-const-cxx17.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/misplaced-const.c [moved from clang-tools-extra/test/clang-tidy/checkers/misc-misplaced-const.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/misplaced-const.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-misplaced-const.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/new-delete-overloads-sized-dealloc.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-new-delete-overloads-sized-dealloc.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/new-delete-overloads.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-new-delete-overloads.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/no-recursion.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-no-recursion.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/non-copyable-objects.c [moved from clang-tools-extra/test/clang-tidy/checkers/misc-non-copyable-objects.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/non-copyable-objects.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-non-copyable-objects.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/non-private-member-variables-in-classes.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-non-private-member-variables-in-classes.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/redundant-expression.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-redundant-expression.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/static-assert.c [moved from clang-tools-extra/test/clang-tidy/checkers/misc-static-assert.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/static-assert.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-static-assert.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/throw-by-value-catch-by-reference.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-throw-by-value-catch-by-reference.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/unconventional-assign-operator-cxx17.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-unconventional-assign-operator-cxx17.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/unconventional-assign-operator-precxx11.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-unconventional-assign-operator-precxx11.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/unconventional-assign-operator.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-unconventional-assign-operator.cpp with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/uniqueptr-reset-release.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-uniqueptr-reset-release.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/unused-alias-decls.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-unused-alias-decls.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/unused-invalid-parameter.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-unused-invalid-parameter.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/unused-parameters-strict.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-unused-parameters-strict.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/unused-parameters.c [moved from clang-tools-extra/test/clang-tidy/checkers/misc-unused-parameters.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/unused-parameters.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-unused-parameters.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/unused-using-decls-cxx17.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-unused-using-decls-cxx17.cpp with 86% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/unused-using-decls-errors.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-unused-using-decls-errors.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/misc/unused-using-decls.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/misc-unused-using-decls.cpp with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/concat-nested-namespaces/modernize-concat-nested-namespaces.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-concat-nested-namespaces/modernize-concat-nested-namespaces.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/assert.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/assert.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/complex.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/complex.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/ctype.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/ctype.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/errno.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/errno.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/fenv.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/fenv.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/float.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/portability-restrict-system-includes/system/float.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/inttypes.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/inttypes.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/iso646.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/iso646.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/limits.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/limits.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/locale.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/locale.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/math.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/math.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/mylib.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/mylib.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/mysystemlib.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/mysystemlib.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/setjmp.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/setjmp.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/signal.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/signal.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/stdalign.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/stdalign.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/stdarg.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/stdarg.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/stdbool.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/stdbool.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/stddef.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/stddef.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/stdint.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/portability-restrict-system-includes/system/stdint.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/stdio.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/llvmlibc/system/stdio.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/stdlib.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/llvmlibc/system/stdlib.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/string.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/llvmlibc/system/string.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/tgmath.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/tgmath.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/time.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/time.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/uchar.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/uchar.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/wchar.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/wchar.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/deprecated-headers/wctype.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/wctype.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/loop-convert/structures.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-loop-convert/structures.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/macro-to-enum/modernize-macro-to-enum.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-macro-to-enum/modernize-macro-to-enum.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/macro-to-enum/modernize-macro-to-enum2.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-macro-to-enum/modernize-macro-to-enum2.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/macro-to-enum/modernize-macro-to-enum3.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-macro-to-enum/modernize-macro-to-enum3.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/pass-by-value/header-with-fix.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-pass-by-value/header-with-fix.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/pass-by-value/header.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-pass-by-value/header.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/replace-auto-ptr/memory.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-replace-auto-ptr/memory.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/smart-ptr/initializer_list.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-smart-ptr/initializer_list.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/smart-ptr/shared_ptr.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-smart-ptr/shared_ptr.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/smart-ptr/unique_ptr.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-smart-ptr/unique_ptr.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/use-auto/containers.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-use-auto/containers.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/use-using/modernize-use-using.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-use-using/modernize-use-using.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/avoid-bind-permissive-parameter-list.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-avoid-bind-permissive-parameter-list.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/avoid-bind.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-avoid-bind.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/avoid-c-arrays-ignores-main.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-avoid-c-arrays-ignores-main.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/avoid-c-arrays-ignores-three-arg-main.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-avoid-c-arrays-ignores-three-arg-main.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/avoid-c-arrays.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-avoid-c-arrays.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/concat-nested-namespaces.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-concat-nested-namespaces.cpp with 88% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/deprecated-headers-cxx03.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-deprecated-headers-cxx03.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/deprecated-headers-cxx11.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-deprecated-headers-cxx11.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/deprecated-headers-extern-c.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-deprecated-headers-extern-c.cpp with 86% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/deprecated-ios-base-aliases.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-deprecated-ios-base-aliases.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/loop-convert-assert-failure.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-loop-convert-assert-failure.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/loop-convert-basic.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-loop-convert-basic.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/loop-convert-camelback.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-loop-convert-camelback.cpp with 95% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/loop-convert-const.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-loop-convert-const.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/loop-convert-extra.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-loop-convert-extra.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/loop-convert-lowercase.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-loop-convert-lowercase.cpp with 96% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/loop-convert-multidimensional.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-loop-convert-multidimensional.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/loop-convert-negative.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-loop-convert-negative.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/loop-convert-reverse.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-loop-convert-reverse.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/loop-convert-rewritten-binop.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-loop-convert-rewritten-binop.cpp with 97% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/loop-convert-uppercase.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-loop-convert-uppercase.cpp with 96% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/loop-convert.c [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-loop-convert.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/macro-to-enum.c [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-macro-to-enum.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/macro-to-enum.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-macro-to-enum.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/make-shared-header.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-make-shared-header.cpp with 93% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/make-shared.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-make-shared.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/make-unique-cxx11.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-make-unique-cxx11.cpp with 86% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/make-unique-default-init.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-make-unique-default-init.cpp with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/make-unique-header.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-make-unique-header.cpp with 93% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/make-unique-inaccessible-ctors.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-make-unique-inaccessible-ctors.cpp with 97% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/make-unique-macros.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-make-unique-macros.cpp with 95% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/make-unique.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-make-unique.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/pass-by-value-header.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-pass-by-value-header.cpp with 87% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/pass-by-value-macro-header.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-pass-by-value-macro-header.cpp with 93% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/pass-by-value-multi-fixes.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-pass-by-value-multi-fixes.cpp with 87% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/pass-by-value.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-pass-by-value.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/raw-string-literal-delimiter.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-raw-string-literal-delimiter.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/raw-string-literal-replace-shorter.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-raw-string-literal-replace-shorter.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/raw-string-literal.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-raw-string-literal.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/redundant-void-arg-delayed.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-redundant-void-arg-delayed.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/redundant-void-arg.c [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-redundant-void-arg.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/redundant-void-arg.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-redundant-void-arg.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/replace-auto-ptr.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-replace-auto-ptr.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/replace-disallow-copy-and-assign-macro.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-replace-disallow-copy-and-assign-macro.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/replace-random-shuffle.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-replace-random-shuffle.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/return-braced-init-list.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-return-braced-init-list.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/shrink-to-fit.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-shrink-to-fit.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/unary-static-assert.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-unary-static-assert.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-auto-cast-remove-stars.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-auto-cast-remove-stars.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-auto-cast.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-auto-cast.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-auto-iterator.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-auto-iterator.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-auto-min-type-name-length.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-auto-min-type-name-length.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-auto-new-remove-stars.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-auto-new-remove-stars.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-auto-new.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-auto-new.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-bool-literals-ignore-macros.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-bool-literals-ignore-macros.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-bool-literals.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-bool-literals.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-default-member-init-assignment.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-default-member-init-assignment.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-default-member-init-bitfield.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-default-member-init-bitfield.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-default-member-init-macros.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-default-member-init-macros.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-default-member-init.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-default-member-init.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-emplace-ignore-implicit-constructors.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-emplace-ignore-implicit-constructors.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-emplace.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-emplace.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-equals-default-copy.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-equals-default-copy.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-equals-default-delayed.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-equals-default-delayed.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-equals-default-macros.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-equals-default-macros.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-equals-default.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-equals-default.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-equals-delete-macros.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-equals-delete-macros.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-equals-delete.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-equals-delete.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-nodiscard-clang-unused.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-nodiscard-clang-unused.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-nodiscard-cxx11.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-nodiscard-cxx11.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-nodiscard-gcc-unused.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-nodiscard-gcc-unused.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-nodiscard-no-macro-inscope-cxx11.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-nodiscard-no-macro-inscope-cxx11.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-nodiscard-no-macro.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-nodiscard-no-macro.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-nodiscard.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-nodiscard.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-noexcept-error.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-noexcept-error.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-noexcept-macro.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-noexcept-macro.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-noexcept-opt.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-noexcept-opt.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-noexcept.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-noexcept.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-nullptr-basic.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-nullptr-basic.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-nullptr-cxx20.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-nullptr-cxx20.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-nullptr.c [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-nullptr.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-nullptr.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-nullptr.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-override-allow-override-and-final.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-override-allow-override-and-final.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-override-cxx98.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-override-cxx98.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-override-ms.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-override-ms.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-override-no-destructors.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-override-no-destructors.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-override-with-macro.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-override-with-macro.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-override-with-no-macro-inscope.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-override-with-no-macro-inscope.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-override.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-override.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-trailing-return-type-cxx20.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-trailing-return-type-cxx20.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-trailing-return-type.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-trailing-return-type.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-transparent-functors.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-transparent-functors.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-uncaught-exceptions.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-uncaught-exceptions.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-using-macros.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-using-macros.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/modernize/use-using.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/modernize-use-using.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/mpi/Inputs/type-mismatch/mpimock.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/mpi-type-mismatch/mpimock.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/mpi/buffer-deref.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/mpi-buffer-deref.cpp with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/mpi/type-mismatch.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/mpi-type-mismatch.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/objc/Inputs/assert/XCTestAssertions.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/objc-assert/XCTestAssertions.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/objc/assert-equals.m [moved from clang-tools-extra/test/clang-tidy/checkers/objc-assert-equals.m with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/objc/avoid-nserror-init.m [moved from clang-tools-extra/test/clang-tidy/checkers/objc-avoid-nserror-init.m with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/objc/dealloc-in-category.m [moved from clang-tools-extra/test/clang-tidy/checkers/objc-dealloc-in-category.m with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/objc/forbidden-subclassing-custom.m [moved from clang-tools-extra/test/clang-tidy/checkers/objc-forbidden-subclassing-custom.m with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/objc/forbidden-subclassing.m [moved from clang-tools-extra/test/clang-tidy/checkers/objc-forbidden-subclassing.m with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/objc/missing-hash.m [moved from clang-tools-extra/test/clang-tidy/checkers/objc-missing-hash.m with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/objc/nsinvocation-argument-lifetime.m [moved from clang-tools-extra/test/clang-tidy/checkers/objc-nsinvocation-argument-lifetime.m with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/objc/property-declaration.m [moved from clang-tools-extra/test/clang-tidy/checkers/objc-property-declaration.m with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/objc/super-self.m [moved from clang-tools-extra/test/clang-tidy/checkers/objc-super-self.m with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/openmp/exception-escape.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/openmp-exception-escape.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/openmp/use-default-none.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/openmp-use-default-none.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/Inputs/unnecessary-value-param/header-fixed.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/performance-unnecessary-value-param/header-fixed.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/Inputs/unnecessary-value-param/header.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/performance-unnecessary-value-param/header.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/faster-string-find.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-faster-string-find.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/for-range-copy-allowed-types.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-for-range-copy-allowed-types.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/for-range-copy-warn-on-all-auto-copies.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-for-range-copy-warn-on-all-auto-copies.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/for-range-copy.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-for-range-copy.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/implicit-conversion-in-loop.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-implicit-conversion-in-loop.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/inefficient-algorithm.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-inefficient-algorithm.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/inefficient-string-concatenation.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-inefficient-string-concatenation.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/inefficient-vector-operation.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-inefficient-vector-operation.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/move-const-arg-const-ref.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-move-const-arg-const-ref.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/move-const-arg-trivially-copyable.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-move-const-arg-trivially-copyable.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/move-const-arg.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-move-const-arg.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/move-constructor-init.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-move-constructor-init.cpp with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/no-automatic-move.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-no-automatic-move.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/no-int-to-ptr.c [moved from clang-tools-extra/test/clang-tidy/checkers/performance-no-int-to-ptr.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/no-int-to-ptr.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-no-int-to-ptr.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/noexcept-move-constructor-fix.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-noexcept-move-constructor-fix.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/noexcept-move-constructor.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-noexcept-move-constructor.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/trivially-destructible.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-trivially-destructible.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/type-promotion-in-math-fn.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-type-promotion-in-math-fn.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/unnecessary-copy-initialization-allowed-types.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-unnecessary-copy-initialization-allowed-types.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/unnecessary-copy-initialization-excluded-container-types.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-unnecessary-copy-initialization-excluded-container-types.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/unnecessary-copy-initialization.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-unnecessary-copy-initialization.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/unnecessary-value-param-allowed-types.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-unnecessary-value-param-allowed-types.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/unnecessary-value-param-arc.m [moved from clang-tools-extra/test/clang-tidy/checkers/performance-unnecessary-value-param-arc.m with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/unnecessary-value-param-arc.mm [moved from clang-tools-extra/test/clang-tidy/checkers/performance-unnecessary-value-param-arc.mm with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/unnecessary-value-param-delayed.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-unnecessary-value-param-delayed.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/unnecessary-value-param-header.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-unnecessary-value-param-header.cpp with 85% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/unnecessary-value-param-incomplete-type.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-unnecessary-value-param-incomplete-type.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/performance/unnecessary-value-param.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/performance-unnecessary-value-param.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/portability/Inputs/restrict-system-includes/system/float.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/float.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/portability/Inputs/restrict-system-includes/system/r.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/portability-restrict-system-includes/system/r.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/portability/Inputs/restrict-system-includes/system/s.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/portability-restrict-system-includes/system/s.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/portability/Inputs/restrict-system-includes/system/stddef.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/llvmlibc/resource/include/stddef.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/portability/Inputs/restrict-system-includes/system/stdint.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-deprecated-headers/stdint.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/portability/Inputs/restrict-system-includes/system/t.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/portability-restrict-system-includes/system/t.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/portability/Inputs/restrict-system-includes/system/transitive.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/portability-restrict-system-includes/system/transitive.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/portability/Inputs/restrict-system-includes/transitive2.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/portability-restrict-system-includes/transitive2.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/portability/restrict-system-includes-allow.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/portability-restrict-system-includes-allow.cpp with 83% similarity]
clang-tools-extra/test/clang-tidy/checkers/portability/restrict-system-includes-disallow.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/portability-restrict-system-includes-disallow.cpp with 85% similarity]
clang-tools-extra/test/clang-tidy/checkers/portability/restrict-system-includes-glob.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/portability-restrict-system-includes-glob.cpp with 84% similarity]
clang-tools-extra/test/clang-tidy/checkers/portability/restrict-system-includes-transitive.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/portability-restrict-system-includes-transitive.cpp with 91% similarity]
clang-tools-extra/test/clang-tidy/checkers/portability/simd-intrinsics-ppc.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/portability-simd-intrinsics-ppc.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/portability/simd-intrinsics-x86.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/portability-simd-intrinsics-x86.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/portability/std-allocator-const.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/portability-std-allocator-const.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/duplicate-include/duplicate-include.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/readability-duplicate-include/readability-duplicate-include.h with 64% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/duplicate-include/duplicate-include2.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/readability-duplicate-include/system/sys/types.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/duplicate-include/system/iostream [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/readability-duplicate-include/system/iostream with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/duplicate-include/system/string.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/readability-duplicate-include/system/string.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/duplicate-include/system/sys/types.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/readability-duplicate-include/readability-duplicate-include2.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/duplicate-include/system/types.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/readability-duplicate-include/system/types.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/identifier-naming/global-style1/.clang-tidy [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/readability-identifier-naming/global-style1/.clang-tidy with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/identifier-naming/global-style1/header.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/readability-identifier-naming/global-style1/header.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/identifier-naming/global-style2/.clang-tidy [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/readability-identifier-naming/global-style2/.clang-tidy with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/identifier-naming/global-style2/header.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/readability-identifier-naming/global-style2/header.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/identifier-naming/hungarian-notation1/.clang-tidy [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/readability-identifier-naming/hungarian-notation1/.clang-tidy with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/identifier-naming/hungarian-notation2/.clang-tidy [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/readability-identifier-naming/hungarian-notation2/.clang-tidy with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/identifier-naming/system/coroutines.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/readability-identifier-naming/system/coroutines.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/identifier-naming/system/system-header.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/readability-identifier-naming/system/system-header.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/identifier-naming/user-header.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/readability-identifier-naming/user-header.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/static-accessed-through-instance/__clang_cuda_builtin_vars.h [moved from clang-tools-extra/test/clang-tidy/checkers/Inputs/readability-static-accessed-through-instance/__clang_cuda_builtin_vars.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/avoid-const-params-in-decls.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-avoid-const-params-in-decls.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/avoid-underscore-in-googletest-name.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-avoid-underscore-in-googletest-name.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/braces-around-statements-assert-failure.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-braces-around-statements-assert-failure.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/braces-around-statements-attributes.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-braces-around-statements-attributes.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/braces-around-statements-constexpr-if-templates.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-braces-around-statements-constexpr-if-templates.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/braces-around-statements-few-lines.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-braces-around-statements-few-lines.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/braces-around-statements-format.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-braces-around-statements-format.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/braces-around-statements-same-line.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-braces-around-statements-same-line.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/braces-around-statements-single-line.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-braces-around-statements-single-line.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/braces-around-statements.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-braces-around-statements.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/const-return-type.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-const-return-type.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/container-contains.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-container-contains.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/container-data-pointer.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-container-data-pointer.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/container-size-empty-cxx20.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-container-size-empty-cxx20.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/container-size-empty.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-container-size-empty.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/convert-member-functions-to-static.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-convert-member-functions-to-static.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/delete-null-pointer.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-delete-null-pointer.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/duplicate-include.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-duplicate-include.cpp with 87% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/else-after-return-if-constexpr.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-else-after-return-if-constexpr.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/else-after-return-no-cond-var-refactor.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-else-after-return-no-cond-var-refactor.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/else-after-return-no-warn.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-else-after-return-no-warn.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/else-after-return-pp-no-crash.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-else-after-return-pp-no-crash.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/else-after-return.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-else-after-return.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/function-cognitive-complexity-flags.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-function-cognitive-complexity-flags.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/function-cognitive-complexity.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-function-cognitive-complexity.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/function-size-variables-c++17.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-function-size-variables-c++17.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/function-size.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-function-size.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/identifier-length.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-identifier-length.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/identifier-naming-bugfix-name-conflicts.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-identifier-naming-bugfix-name-conflicts.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/identifier-naming-bugfix.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-identifier-naming-bugfix.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/identifier-naming-case-violation.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-identifier-naming-case-violation.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/identifier-naming-hungarian-notation-cfgfile.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-identifier-naming-hungarian-notation-cfgfile.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/identifier-naming-hungarian-notation.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-identifier-naming-hungarian-notation.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/identifier-naming-ignored-regexp.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-identifier-naming-ignored-regexp.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/identifier-naming-main-like.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-identifier-naming-main-like.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/identifier-naming-member-decl-usage.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-identifier-naming-member-decl-usage.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/identifier-naming-multiple-styles.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-identifier-naming-multiple-styles.cpp with 96% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/identifier-naming-objc.m [moved from clang-tools-extra/test/clang-tidy/checkers/readability-identifier-naming-objc.m with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/identifier-naming.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-identifier-naming.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/implicit-bool-conversion-allow-in-conditions.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-implicit-bool-conversion-allow-in-conditions.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/implicit-bool-conversion-cxx98.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-implicit-bool-conversion-cxx98.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/implicit-bool-conversion.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-implicit-bool-conversion.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/inconsistent-declaration-parameter-name-macros.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-inconsistent-declaration-parameter-name-macros.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/inconsistent-declaration-parameter-name-strict.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-inconsistent-declaration-parameter-name-strict.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/inconsistent-declaration-parameter-name.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-inconsistent-declaration-parameter-name.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/isolate-declaration-cxx17.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-isolate-declaration-cxx17.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/isolate-declaration-fixing.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-isolate-declaration-fixing.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/isolate-declaration-no-infinite-loop.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-isolate-declaration-no-infinite-loop.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/isolate-declaration.c [moved from clang-tools-extra/test/clang-tidy/checkers/readability-isolate-declaration.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/isolate-declaration.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-isolate-declaration.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/magic-numbers-bitfields.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-magic-numbers-bitfields.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/magic-numbers-todo.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-magic-numbers-todo.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/magic-numbers-userliteral.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-magic-numbers-userliteral.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/magic-numbers.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-magic-numbers.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/make-member-function-const.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-make-member-function-const.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/misleading-indentation.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-misleading-indentation.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/misplaced-array-index.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-misplaced-array-index.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/named-parameter.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-named-parameter.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/non-const-parameter.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-non-const-parameter.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/qualified-auto-cxx20.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-qualified-auto-cxx20.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/qualified-auto.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-qualified-auto.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-access-specifiers-check-first-declaration.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-access-specifiers-check-first-declaration.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-access-specifiers.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-access-specifiers.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-control-flow.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-control-flow.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-declaration-ignore-macros.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-declaration-ignore-macros.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-declaration.c [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-declaration.c with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-declaration.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-declaration.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-function-ptr-dereference.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-function-ptr-dereference.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-member-init.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-member-init.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-preprocessor-ifdef.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-preprocessor-ifdef.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-preprocessor.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-preprocessor.cpp with 97% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-preprocessor.h [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-preprocessor.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-smartptr-get-macros.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-smartptr-get-macros.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-smartptr-get-msvc.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-smartptr-get-msvc.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-smartptr-get.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-smartptr-get.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-string-cstr-msvc.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-string-cstr-msvc.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-string-cstr.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-string-cstr.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-string-init-msvc.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-string-init-msvc.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/redundant-string-init.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-redundant-string-init.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/simplify-bool-expr-case.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-simplify-bool-expr-case.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/simplify-bool-expr-chained-conditional-assignment.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-simplify-bool-expr-chained-conditional-assignment.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/simplify-bool-expr-chained-conditional-return.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-simplify-bool-expr-chained-conditional-return.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/simplify-bool-expr-cxx17.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-simplify-bool-expr-cxx17.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/simplify-bool-expr-demorgan.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-simplify-bool-expr-demorgan.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/simplify-bool-expr-members.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-simplify-bool-expr-members.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/simplify-bool-expr.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-simplify-bool-expr.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/simplify-subscript-expr.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-simplify-subscript-expr.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/static-accessed-through-instance-nesting-threshold.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-static-accessed-through-instance-nesting-threshold.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/static-accessed-through-instance.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-static-accessed-through-instance.cpp with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/static-definition-in-anonymous-namespace.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-static-definition-in-anonymous-namespace.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/string-compare.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-string-compare.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/suspicious-call-argument.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-suspicious-call-argument.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/uniqueptr-delete-release.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-uniqueptr-delete-release.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/uppercase-literal-suffix-float16.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-uppercase-literal-suffix-float16.cpp with 97% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/uppercase-literal-suffix-floating-point-opencl-half.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-uppercase-literal-suffix-floating-point-opencl-half.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/uppercase-literal-suffix-floating-point.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-uppercase-literal-suffix-floating-point.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/uppercase-literal-suffix-hexadecimal-floating-point.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-uppercase-literal-suffix-hexadecimal-floating-point.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/uppercase-literal-suffix-integer-custom-list.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-uppercase-literal-suffix-integer-custom-list.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/uppercase-literal-suffix-integer-macro.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-uppercase-literal-suffix-integer-macro.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/uppercase-literal-suffix-integer-ms.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-uppercase-literal-suffix-integer-ms.cpp with 98% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/uppercase-literal-suffix-integer.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-uppercase-literal-suffix-integer.cpp with 99% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/uppercase-literal-suffix.h [moved from clang-tools-extra/test/clang-tidy/checkers/readability-uppercase-literal-suffix.h with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/use-anyofallof-cpp20.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-use-anyofallof-cpp20.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/readability/use-anyofallof.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/readability-use-anyofallof.cpp with 100% similarity]
clang-tools-extra/test/clang-tidy/checkers/zircon/temporary-objects.cpp [moved from clang-tools-extra/test/clang-tidy/checkers/zircon-temporary-objects.cpp with 100% similarity]
clang-tools-extra/test/lit.cfg.py