compiler-rt: Rename .cc file in test/lsan to .cpp
authorFangrui Song <maskray@google.com>
Mon, 5 Aug 2019 07:04:42 +0000 (07:04 +0000)
committerFangrui Song <maskray@google.com>
Mon, 5 Aug 2019 07:04:42 +0000 (07:04 +0000)
Like r367463, but for test/lsan.

llvm-svn: 367803

37 files changed:
compiler-rt/lib/sanitizer_common/scripts/check_lint.sh
compiler-rt/test/lsan/TestCases/Linux/fork.cpp [moved from compiler-rt/test/lsan/TestCases/Linux/fork.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/Linux/fork_and_leak.cpp [moved from compiler-rt/test/lsan/TestCases/Linux/fork_and_leak.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/Linux/fork_threaded.cpp [moved from compiler-rt/test/lsan/TestCases/Linux/fork_threaded.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/Linux/log-path_test.cpp [moved from compiler-rt/test/lsan/TestCases/Linux/log-path_test.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/Linux/use_tls_dynamic.cpp [moved from compiler-rt/test/lsan/TestCases/Linux/use_tls_dynamic.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/Linux/use_tls_pthread_specific_dynamic.cpp [moved from compiler-rt/test/lsan/TestCases/Linux/use_tls_pthread_specific_dynamic.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/Linux/use_tls_pthread_specific_static.cpp [moved from compiler-rt/test/lsan/TestCases/Linux/use_tls_pthread_specific_static.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/Linux/use_tls_static.cpp [moved from compiler-rt/test/lsan/TestCases/Linux/use_tls_static.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/default_options.cpp [moved from compiler-rt/test/lsan/TestCases/default_options.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/disabler.cpp [moved from compiler-rt/test/lsan/TestCases/disabler.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/do_leak_check_override.cpp [moved from compiler-rt/test/lsan/TestCases/do_leak_check_override.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/high_allocator_contention.cpp [moved from compiler-rt/test/lsan/TestCases/high_allocator_contention.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/ignore_object_errors.cpp [moved from compiler-rt/test/lsan/TestCases/ignore_object_errors.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/large_allocation_leak.cpp [moved from compiler-rt/test/lsan/TestCases/large_allocation_leak.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/leak_check_at_exit.cpp [moved from compiler-rt/test/lsan/TestCases/leak_check_at_exit.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/leak_check_before_thread_started.cpp [moved from compiler-rt/test/lsan/TestCases/leak_check_before_thread_started.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/link_turned_off.cpp [moved from compiler-rt/test/lsan/TestCases/link_turned_off.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/many_tls_keys.cpp [moved from compiler-rt/test/lsan/TestCases/many_tls_keys.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/new_array_with_dtor_0.cpp [moved from compiler-rt/test/lsan/TestCases/new_array_with_dtor_0.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/pointer_to_self.cpp [moved from compiler-rt/test/lsan/TestCases/pointer_to_self.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/print_suppressions.cpp [moved from compiler-rt/test/lsan/TestCases/print_suppressions.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/recoverable_leak_check.cpp [moved from compiler-rt/test/lsan/TestCases/recoverable_leak_check.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/register_root_region.cpp [moved from compiler-rt/test/lsan/TestCases/register_root_region.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/stale_stack_leak.cpp [moved from compiler-rt/test/lsan/TestCases/stale_stack_leak.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/strace_test.cpp [moved from compiler-rt/test/lsan/TestCases/strace_test.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/suppressions_default.cpp [moved from compiler-rt/test/lsan/TestCases/suppressions_default.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/suppressions_file.cpp [moved from compiler-rt/test/lsan/TestCases/suppressions_file.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/swapcontext.cpp [moved from compiler-rt/test/lsan/TestCases/swapcontext.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/use_after_return.cpp [moved from compiler-rt/test/lsan/TestCases/use_after_return.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/use_globals_initialized.cpp [moved from compiler-rt/test/lsan/TestCases/use_globals_initialized.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/use_globals_uninitialized.cpp [moved from compiler-rt/test/lsan/TestCases/use_globals_uninitialized.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/use_poisoned_asan.cpp [moved from compiler-rt/test/lsan/TestCases/use_poisoned_asan.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/use_registers.cpp [moved from compiler-rt/test/lsan/TestCases/use_registers.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/use_stacks.cpp [moved from compiler-rt/test/lsan/TestCases/use_stacks.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/use_stacks_threaded.cpp [moved from compiler-rt/test/lsan/TestCases/use_stacks_threaded.cc with 100% similarity]
compiler-rt/test/lsan/TestCases/use_unaligned.cpp [moved from compiler-rt/test/lsan/TestCases/use_unaligned.cc with 100% similarity]

index ad608f8..ad90605 100755 (executable)
@@ -105,7 +105,7 @@ run_lint ${MSAN_RTL_LINT_FILTER} ${MSAN_RTL}/*.cpp \
 LSAN_RTL=${COMPILER_RT}/lib/lsan
 run_lint ${LSAN_RTL_LINT_FILTER} ${LSAN_RTL}/*.cpp \
                                  ${LSAN_RTL}/*.h &
-run_lint ${LSAN_LIT_TEST_LINT_FILTER} ${LIT_TESTS}/lsan/*/*.cc &
+run_lint ${LSAN_LIT_TEST_LINT_FILTER} ${LIT_TESTS}/lsan/*/*.cpp &
 
 # DFSan
 DFSAN_RTL=${COMPILER_RT}/lib/dfsan