From 3fa3831830b1e848a6359a1e59184e3e2903f5f8 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Thu, 1 Aug 2019 14:38:49 +0000 Subject: [PATCH] compiler-rt: Rename .cc file in lib/scudo/standalone/tests to .cpp Like r367463, but for scudo/standalone/tests. With this, all files in compiler-rt/lib have extension cpp. llvm-svn: 367569 --- .../lib/scudo/standalone/tests/CMakeLists.txt | 51 ++++++++++++---------- .../tests/{atomic_test.cc => atomic_test.cpp} | 2 +- .../tests/{bytemap_test.cc => bytemap_test.cpp} | 2 +- .../tests/{checksum_test.cc => checksum_test.cpp} | 2 +- .../tests/{chunk_test.cc => chunk_test.cpp} | 2 +- .../tests/{combined_test.cc => combined_test.cpp} | 2 +- .../tests/{flags_test.cc => flags_test.cpp} | 2 +- .../tests/{list_test.cc => list_test.cpp} | 2 +- .../standalone/tests/{map_test.cc => map_test.cpp} | 2 +- .../tests/{mutex_test.cc => mutex_test.cpp} | 2 +- .../tests/{primary_test.cc => primary_test.cpp} | 2 +- .../{quarantine_test.cc => quarantine_test.cpp} | 2 +- .../tests/{release_test.cc => release_test.cpp} | 2 +- .../tests/{report_test.cc => report_test.cpp} | 2 +- ..._unit_test_main.cc => scudo_unit_test_main.cpp} | 2 +- .../{secondary_test.cc => secondary_test.cpp} | 2 +- ...e_class_map_test.cc => size_class_map_test.cpp} | 2 +- .../tests/{stats_test.cc => stats_test.cpp} | 2 +- .../tests/{strings_test.cc => strings_test.cpp} | 2 +- .../standalone/tests/{tsd_test.cc => tsd_test.cpp} | 2 +- .../tests/{vector_test.cc => vector_test.cpp} | 2 +- .../{wrappers_c_test.cc => wrappers_c_test.cpp} | 2 +- ...{wrappers_cpp_test.cc => wrappers_cpp_test.cpp} | 2 +- 23 files changed, 49 insertions(+), 46 deletions(-) rename compiler-rt/lib/scudo/standalone/tests/{atomic_test.cc => atomic_test.cpp} (98%) rename compiler-rt/lib/scudo/standalone/tests/{bytemap_test.cc => bytemap_test.cpp} (96%) rename compiler-rt/lib/scudo/standalone/tests/{checksum_test.cc => checksum_test.cpp} (97%) rename compiler-rt/lib/scudo/standalone/tests/{chunk_test.cc => chunk_test.cpp} (97%) rename compiler-rt/lib/scudo/standalone/tests/{combined_test.cc => combined_test.cpp} (99%) rename compiler-rt/lib/scudo/standalone/tests/{flags_test.cc => flags_test.cpp} (98%) rename compiler-rt/lib/scudo/standalone/tests/{list_test.cc => list_test.cpp} (98%) rename compiler-rt/lib/scudo/standalone/tests/{map_test.cc => map_test.cpp} (97%) rename compiler-rt/lib/scudo/standalone/tests/{mutex_test.cc => mutex_test.cpp} (97%) rename compiler-rt/lib/scudo/standalone/tests/{primary_test.cc => primary_test.cpp} (98%) rename compiler-rt/lib/scudo/standalone/tests/{quarantine_test.cc => quarantine_test.cpp} (99%) rename compiler-rt/lib/scudo/standalone/tests/{release_test.cc => release_test.cpp} (99%) rename compiler-rt/lib/scudo/standalone/tests/{report_test.cc => report_test.cpp} (97%) rename compiler-rt/lib/scudo/standalone/tests/{scudo_unit_test_main.cc => scudo_unit_test_main.cpp} (87%) rename compiler-rt/lib/scudo/standalone/tests/{secondary_test.cc => secondary_test.cpp} (98%) rename compiler-rt/lib/scudo/standalone/tests/{size_class_map_test.cc => size_class_map_test.cpp} (94%) rename compiler-rt/lib/scudo/standalone/tests/{stats_test.cc => stats_test.cpp} (96%) rename compiler-rt/lib/scudo/standalone/tests/{strings_test.cc => strings_test.cpp} (98%) rename compiler-rt/lib/scudo/standalone/tests/{tsd_test.cc => tsd_test.cpp} (98%) rename compiler-rt/lib/scudo/standalone/tests/{vector_test.cc => vector_test.cpp} (94%) rename compiler-rt/lib/scudo/standalone/tests/{wrappers_c_test.cc => wrappers_c_test.cpp} (98%) rename compiler-rt/lib/scudo/standalone/tests/{wrappers_cpp_test.cc => wrappers_cpp_test.cpp} (97%) diff --git a/compiler-rt/lib/scudo/standalone/tests/CMakeLists.txt b/compiler-rt/lib/scudo/standalone/tests/CMakeLists.txt index 039ad48..f26a850 100644 --- a/compiler-rt/lib/scudo/standalone/tests/CMakeLists.txt +++ b/compiler-rt/lib/scudo/standalone/tests/CMakeLists.txt @@ -57,41 +57,44 @@ macro(add_scudo_unittest testname) endmacro() set(SCUDO_UNIT_TEST_SOURCES - atomic_test.cc - bytemap_test.cc - checksum_test.cc - chunk_test.cc - combined_test.cc - flags_test.cc - list_test.cc - map_test.cc - mutex_test.cc - primary_test.cc - quarantine_test.cc - release_test.cc - report_test.cc - secondary_test.cc - size_class_map_test.cc - stats_test.cc - strings_test.cc - tsd_test.cc - vector_test.cc - scudo_unit_test_main.cc) + atomic_test.cpp + bytemap_test.cpp + checksum_test.cpp + chunk_test.cpp + combined_test.cpp + flags_test.cpp + list_test.cpp + map_test.cpp + mutex_test.cpp + primary_test.cpp + quarantine_test.cpp + release_test.cpp + report_test.cpp + secondary_test.cpp + size_class_map_test.cpp + stats_test.cpp + strings_test.cpp + tsd_test.cpp + vector_test.cpp + scudo_unit_test_main.cpp + ) add_scudo_unittest(ScudoUnitTest SOURCES ${SCUDO_UNIT_TEST_SOURCES}) set(SCUDO_C_UNIT_TEST_SOURCES - wrappers_c_test.cc - scudo_unit_test_main.cc) + wrappers_c_test.cpp + scudo_unit_test_main.cpp + ) add_scudo_unittest(ScudoCUnitTest SOURCES ${SCUDO_C_UNIT_TEST_SOURCES} ADDITIONAL_RTOBJECTS RTScudoStandaloneCWrappers) set(SCUDO_CXX_UNIT_TEST_SOURCES - wrappers_cpp_test.cc - scudo_unit_test_main.cc) + wrappers_cpp_test.cpp + scudo_unit_test_main.cpp + ) add_scudo_unittest(ScudoCxxUnitTest SOURCES ${SCUDO_CXX_UNIT_TEST_SOURCES} diff --git a/compiler-rt/lib/scudo/standalone/tests/atomic_test.cc b/compiler-rt/lib/scudo/standalone/tests/atomic_test.cpp similarity index 98% rename from compiler-rt/lib/scudo/standalone/tests/atomic_test.cc rename to compiler-rt/lib/scudo/standalone/tests/atomic_test.cpp index 3095451..7e6f1d2 100644 --- a/compiler-rt/lib/scudo/standalone/tests/atomic_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/atomic_test.cpp @@ -1,4 +1,4 @@ -//===-- atomic_test.cc ------------------------------------------*- C++ -*-===// +//===-- atomic_test.cpp -----------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/bytemap_test.cc b/compiler-rt/lib/scudo/standalone/tests/bytemap_test.cpp similarity index 96% rename from compiler-rt/lib/scudo/standalone/tests/bytemap_test.cc rename to compiler-rt/lib/scudo/standalone/tests/bytemap_test.cpp index ea34dc0..df0646b 100644 --- a/compiler-rt/lib/scudo/standalone/tests/bytemap_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/bytemap_test.cpp @@ -1,4 +1,4 @@ -//===-- bytemap_test.cc -----------------------------------------*- C++ -*-===// +//===-- bytemap_test.cpp ----------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/checksum_test.cc b/compiler-rt/lib/scudo/standalone/tests/checksum_test.cpp similarity index 97% rename from compiler-rt/lib/scudo/standalone/tests/checksum_test.cc rename to compiler-rt/lib/scudo/standalone/tests/checksum_test.cpp index 2e8dc8a..43bbd47 100644 --- a/compiler-rt/lib/scudo/standalone/tests/checksum_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/checksum_test.cpp @@ -1,4 +1,4 @@ -//===-- checksum_test.cc ----------------------------------------*- C++ -*-===// +//===-- checksum_test.cpp ---------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/chunk_test.cc b/compiler-rt/lib/scudo/standalone/tests/chunk_test.cpp similarity index 97% rename from compiler-rt/lib/scudo/standalone/tests/chunk_test.cc rename to compiler-rt/lib/scudo/standalone/tests/chunk_test.cpp index c3a21e4..57e128e 100644 --- a/compiler-rt/lib/scudo/standalone/tests/chunk_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/chunk_test.cpp @@ -1,4 +1,4 @@ -//===-- chunk_test.cc -------------------------------------------*- C++ -*-===// +//===-- chunk_test.cpp ------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/combined_test.cc b/compiler-rt/lib/scudo/standalone/tests/combined_test.cpp similarity index 99% rename from compiler-rt/lib/scudo/standalone/tests/combined_test.cc rename to compiler-rt/lib/scudo/standalone/tests/combined_test.cpp index 46ce2eb..c8801f9 100644 --- a/compiler-rt/lib/scudo/standalone/tests/combined_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/combined_test.cpp @@ -1,4 +1,4 @@ -//===-- combined_test.cc ----------------------------------------*- C++ -*-===// +//===-- combined_test.cpp ---------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/flags_test.cc b/compiler-rt/lib/scudo/standalone/tests/flags_test.cpp similarity index 98% rename from compiler-rt/lib/scudo/standalone/tests/flags_test.cc rename to compiler-rt/lib/scudo/standalone/tests/flags_test.cpp index 2808a46..1c07bf1 100644 --- a/compiler-rt/lib/scudo/standalone/tests/flags_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/flags_test.cpp @@ -1,4 +1,4 @@ -//===-- flags_test.cc -------------------------------------------*- C++ -*-===// +//===-- flags_test.cpp ------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/list_test.cc b/compiler-rt/lib/scudo/standalone/tests/list_test.cpp similarity index 98% rename from compiler-rt/lib/scudo/standalone/tests/list_test.cc rename to compiler-rt/lib/scudo/standalone/tests/list_test.cpp index e4053d8..ce6cadd 100644 --- a/compiler-rt/lib/scudo/standalone/tests/list_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/list_test.cpp @@ -1,4 +1,4 @@ -//===-- list_test.cc --------------------------------------------*- C++ -*-===// +//===-- list_test.cpp -------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/map_test.cc b/compiler-rt/lib/scudo/standalone/tests/map_test.cpp similarity index 97% rename from compiler-rt/lib/scudo/standalone/tests/map_test.cc rename to compiler-rt/lib/scudo/standalone/tests/map_test.cpp index a645e23..ab5dd8c 100644 --- a/compiler-rt/lib/scudo/standalone/tests/map_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/map_test.cpp @@ -1,4 +1,4 @@ -//===-- map_test.cc ---------------------------------------------*- C++ -*-===// +//===-- map_test.cpp --------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/mutex_test.cc b/compiler-rt/lib/scudo/standalone/tests/mutex_test.cpp similarity index 97% rename from compiler-rt/lib/scudo/standalone/tests/mutex_test.cc rename to compiler-rt/lib/scudo/standalone/tests/mutex_test.cpp index 930838c..c75ef8e 100644 --- a/compiler-rt/lib/scudo/standalone/tests/mutex_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/mutex_test.cpp @@ -1,4 +1,4 @@ -//===-- mutex_test.cc -------------------------------------------*- C++ -*-===// +//===-- mutex_test.cpp ------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/primary_test.cc b/compiler-rt/lib/scudo/standalone/tests/primary_test.cpp similarity index 98% rename from compiler-rt/lib/scudo/standalone/tests/primary_test.cc rename to compiler-rt/lib/scudo/standalone/tests/primary_test.cpp index b4abbc2..329a4c1 100644 --- a/compiler-rt/lib/scudo/standalone/tests/primary_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/primary_test.cpp @@ -1,4 +1,4 @@ -//===-- primary_test.cc -----------------------------------------*- C++ -*-===// +//===-- primary_test.cpp ----------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/quarantine_test.cc b/compiler-rt/lib/scudo/standalone/tests/quarantine_test.cpp similarity index 99% rename from compiler-rt/lib/scudo/standalone/tests/quarantine_test.cc rename to compiler-rt/lib/scudo/standalone/tests/quarantine_test.cpp index 476a507..d7453aa4 100644 --- a/compiler-rt/lib/scudo/standalone/tests/quarantine_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/quarantine_test.cpp @@ -1,4 +1,4 @@ -//===-- quarantine_test.cc --------------------------------------*- C++ -*-===// +//===-- quarantine_test.cpp -------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/release_test.cc b/compiler-rt/lib/scudo/standalone/tests/release_test.cpp similarity index 99% rename from compiler-rt/lib/scudo/standalone/tests/release_test.cc rename to compiler-rt/lib/scudo/standalone/tests/release_test.cpp index 2279d5d..1de7fed 100644 --- a/compiler-rt/lib/scudo/standalone/tests/release_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/release_test.cpp @@ -1,4 +1,4 @@ -//===-- release_test.cc -----------------------------------------*- C++ -*-===// +//===-- release_test.cpp ----------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/report_test.cc b/compiler-rt/lib/scudo/standalone/tests/report_test.cpp similarity index 97% rename from compiler-rt/lib/scudo/standalone/tests/report_test.cc rename to compiler-rt/lib/scudo/standalone/tests/report_test.cpp index ce7eda5..c2f377d 100644 --- a/compiler-rt/lib/scudo/standalone/tests/report_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/report_test.cpp @@ -1,4 +1,4 @@ -//===-- report_test.cc ------------------------------------------*- C++ -*-===// +//===-- report_test.cpp -----------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/scudo_unit_test_main.cc b/compiler-rt/lib/scudo/standalone/tests/scudo_unit_test_main.cpp similarity index 87% rename from compiler-rt/lib/scudo/standalone/tests/scudo_unit_test_main.cc rename to compiler-rt/lib/scudo/standalone/tests/scudo_unit_test_main.cpp index 16398e5..60bd564 100644 --- a/compiler-rt/lib/scudo/standalone/tests/scudo_unit_test_main.cc +++ b/compiler-rt/lib/scudo/standalone/tests/scudo_unit_test_main.cpp @@ -1,4 +1,4 @@ -//===-- scudo_unit_test_main.cc ---------------------------------*- C++ -*-===// +//===-- scudo_unit_test_main.cpp --------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/secondary_test.cc b/compiler-rt/lib/scudo/standalone/tests/secondary_test.cpp similarity index 98% rename from compiler-rt/lib/scudo/standalone/tests/secondary_test.cc rename to compiler-rt/lib/scudo/standalone/tests/secondary_test.cpp index 09cd8a2..84c3754 100644 --- a/compiler-rt/lib/scudo/standalone/tests/secondary_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/secondary_test.cpp @@ -1,4 +1,4 @@ -//===-- secondary_test.cc ---------------------------------------*- C++ -*-===// +//===-- secondary_test.cpp --------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/size_class_map_test.cc b/compiler-rt/lib/scudo/standalone/tests/size_class_map_test.cpp similarity index 94% rename from compiler-rt/lib/scudo/standalone/tests/size_class_map_test.cc rename to compiler-rt/lib/scudo/standalone/tests/size_class_map_test.cpp index d857aa4..39babc1 100644 --- a/compiler-rt/lib/scudo/standalone/tests/size_class_map_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/size_class_map_test.cpp @@ -1,4 +1,4 @@ -//===-- size_class_map_test.cc ----------------------------------*- C++ -*-===// +//===-- size_class_map_test.cpp ---------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/stats_test.cc b/compiler-rt/lib/scudo/standalone/tests/stats_test.cpp similarity index 96% rename from compiler-rt/lib/scudo/standalone/tests/stats_test.cc rename to compiler-rt/lib/scudo/standalone/tests/stats_test.cpp index 9ed105d..449c149 100644 --- a/compiler-rt/lib/scudo/standalone/tests/stats_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/stats_test.cpp @@ -1,4 +1,4 @@ -//===-- stats_test.cc -------------------------------------------*- C++ -*-===// +//===-- stats_test.cpp ------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/strings_test.cc b/compiler-rt/lib/scudo/standalone/tests/strings_test.cpp similarity index 98% rename from compiler-rt/lib/scudo/standalone/tests/strings_test.cc rename to compiler-rt/lib/scudo/standalone/tests/strings_test.cpp index 31e59c4..3b1a5e8 100644 --- a/compiler-rt/lib/scudo/standalone/tests/strings_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/strings_test.cpp @@ -1,4 +1,4 @@ -//===-- strings_test.cc -----------------------------------------*- C++ -*-===// +//===-- strings_test.cpp ----------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/tsd_test.cc b/compiler-rt/lib/scudo/standalone/tests/tsd_test.cpp similarity index 98% rename from compiler-rt/lib/scudo/standalone/tests/tsd_test.cc rename to compiler-rt/lib/scudo/standalone/tests/tsd_test.cpp index 9ab1010..1941723 100644 --- a/compiler-rt/lib/scudo/standalone/tests/tsd_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/tsd_test.cpp @@ -1,4 +1,4 @@ -//===-- tsd_test.cc ---------------------------------------------*- C++ -*-===// +//===-- tsd_test.cpp --------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/vector_test.cc b/compiler-rt/lib/scudo/standalone/tests/vector_test.cpp similarity index 94% rename from compiler-rt/lib/scudo/standalone/tests/vector_test.cc rename to compiler-rt/lib/scudo/standalone/tests/vector_test.cpp index ebfcc43..946a44e 100644 --- a/compiler-rt/lib/scudo/standalone/tests/vector_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/vector_test.cpp @@ -1,4 +1,4 @@ -//===-- vector_test.cc ------------------------------------------*- C++ -*-===// +//===-- vector_test.cpp -----------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/wrappers_c_test.cc b/compiler-rt/lib/scudo/standalone/tests/wrappers_c_test.cpp similarity index 98% rename from compiler-rt/lib/scudo/standalone/tests/wrappers_c_test.cc rename to compiler-rt/lib/scudo/standalone/tests/wrappers_c_test.cpp index a5ba806..4f3c9ae 100644 --- a/compiler-rt/lib/scudo/standalone/tests/wrappers_c_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/wrappers_c_test.cpp @@ -1,4 +1,4 @@ -//===-- wrappers_c_test.cc --------------------------------------*- C++ -*-===// +//===-- wrappers_c_test.cpp -------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. diff --git a/compiler-rt/lib/scudo/standalone/tests/wrappers_cpp_test.cc b/compiler-rt/lib/scudo/standalone/tests/wrappers_cpp_test.cpp similarity index 97% rename from compiler-rt/lib/scudo/standalone/tests/wrappers_cpp_test.cc rename to compiler-rt/lib/scudo/standalone/tests/wrappers_cpp_test.cpp index 766c13f..5eb65bc 100644 --- a/compiler-rt/lib/scudo/standalone/tests/wrappers_cpp_test.cc +++ b/compiler-rt/lib/scudo/standalone/tests/wrappers_cpp_test.cpp @@ -1,4 +1,4 @@ -//===-- wrappers_cpp_test.cc ------------------------------------*- C++ -*-===// +//===-- wrappers_cpp_test.cpp -----------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. -- 2.7.4