diff options
Diffstat (limited to 'compiler-rt/lib/tsan/tests/rtl')
| -rw-r--r-- | compiler-rt/lib/tsan/tests/rtl/CMakeLists.txt | 22 | ||||
| -rw-r--r-- | compiler-rt/lib/tsan/tests/rtl/tsan_bench.cpp (renamed from compiler-rt/lib/tsan/tests/rtl/tsan_bench.cc) | 2 | ||||
| -rw-r--r-- | compiler-rt/lib/tsan/tests/rtl/tsan_mop.cpp (renamed from compiler-rt/lib/tsan/tests/rtl/tsan_mop.cc) | 2 | ||||
| -rw-r--r-- | compiler-rt/lib/tsan/tests/rtl/tsan_mutex.cpp (renamed from compiler-rt/lib/tsan/tests/rtl/tsan_mutex.cc) | 2 | ||||
| -rw-r--r-- | compiler-rt/lib/tsan/tests/rtl/tsan_posix.cpp (renamed from compiler-rt/lib/tsan/tests/rtl/tsan_posix.cc) | 2 | ||||
| -rw-r--r-- | compiler-rt/lib/tsan/tests/rtl/tsan_string.cpp (renamed from compiler-rt/lib/tsan/tests/rtl/tsan_string.cc) | 2 | ||||
| -rw-r--r-- | compiler-rt/lib/tsan/tests/rtl/tsan_test.cpp (renamed from compiler-rt/lib/tsan/tests/rtl/tsan_test.cc) | 2 | ||||
| -rw-r--r-- | compiler-rt/lib/tsan/tests/rtl/tsan_test_util_posix.cpp (renamed from compiler-rt/lib/tsan/tests/rtl/tsan_test_util_posix.cc) | 2 | ||||
| -rw-r--r-- | compiler-rt/lib/tsan/tests/rtl/tsan_thread.cpp (renamed from compiler-rt/lib/tsan/tests/rtl/tsan_thread.cc) | 2 | 
9 files changed, 21 insertions, 17 deletions
diff --git a/compiler-rt/lib/tsan/tests/rtl/CMakeLists.txt b/compiler-rt/lib/tsan/tests/rtl/CMakeLists.txt index a34f08ea965..92cec3ee41b 100644 --- a/compiler-rt/lib/tsan/tests/rtl/CMakeLists.txt +++ b/compiler-rt/lib/tsan/tests/rtl/CMakeLists.txt @@ -1,18 +1,22 @@  set(TSAN_RTL_TEST_SOURCES -  tsan_bench.cc -  tsan_mop.cc -  tsan_mutex.cc -  tsan_posix.cc -  tsan_string.cc -  tsan_test.cc -  tsan_thread.cc) +  tsan_bench.cpp +  tsan_mop.cpp +  tsan_mutex.cpp +  tsan_posix.cpp +  tsan_string.cpp +  tsan_test.cpp +  tsan_thread.cpp +  )  if(UNIX) -  list(APPEND TSAN_RTL_TEST_SOURCES tsan_test_util_posix.cc) +  list(APPEND TSAN_RTL_TEST_SOURCES +    tsan_test_util_posix.cpp +    )  endif()  set(TSAN_RTL_TEST_HEADERS -  tsan_test_util.h) +  tsan_test_util.h +  )  add_tsan_unittest(TsanRtlTest    SOURCES ${TSAN_RTL_TEST_SOURCES} diff --git a/compiler-rt/lib/tsan/tests/rtl/tsan_bench.cc b/compiler-rt/lib/tsan/tests/rtl/tsan_bench.cpp index 0135101142f..36ca9b5e035 100644 --- a/compiler-rt/lib/tsan/tests/rtl/tsan_bench.cc +++ b/compiler-rt/lib/tsan/tests/rtl/tsan_bench.cpp @@ -1,4 +1,4 @@ -//===-- tsan_bench.cc -----------------------------------------------------===// +//===-- tsan_bench.cpp ----------------------------------------------------===//  //  // 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/tsan/tests/rtl/tsan_mop.cc b/compiler-rt/lib/tsan/tests/rtl/tsan_mop.cpp index a5b0bdda3cf..1825c96d743 100644 --- a/compiler-rt/lib/tsan/tests/rtl/tsan_mop.cc +++ b/compiler-rt/lib/tsan/tests/rtl/tsan_mop.cpp @@ -1,4 +1,4 @@ -//===-- tsan_mop.cc -------------------------------------------------------===// +//===-- tsan_mop.cpp ------------------------------------------------------===//  //  // 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/tsan/tests/rtl/tsan_mutex.cc b/compiler-rt/lib/tsan/tests/rtl/tsan_mutex.cpp index af12e20b148..dae9c94c339 100644 --- a/compiler-rt/lib/tsan/tests/rtl/tsan_mutex.cc +++ b/compiler-rt/lib/tsan/tests/rtl/tsan_mutex.cpp @@ -1,4 +1,4 @@ -//===-- tsan_mutex.cc -----------------------------------------------------===// +//===-- tsan_mutex.cpp ----------------------------------------------------===//  //  // 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/tsan/tests/rtl/tsan_posix.cc b/compiler-rt/lib/tsan/tests/rtl/tsan_posix.cpp index d1940452cc8..0eb8dc14df7 100644 --- a/compiler-rt/lib/tsan/tests/rtl/tsan_posix.cc +++ b/compiler-rt/lib/tsan/tests/rtl/tsan_posix.cpp @@ -1,4 +1,4 @@ -//===-- tsan_posix.cc -----------------------------------------------------===// +//===-- tsan_posix.cpp ----------------------------------------------------===//  //  // 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/tsan/tests/rtl/tsan_string.cc b/compiler-rt/lib/tsan/tests/rtl/tsan_string.cpp index b236d46310e..4c31389298a 100644 --- a/compiler-rt/lib/tsan/tests/rtl/tsan_string.cc +++ b/compiler-rt/lib/tsan/tests/rtl/tsan_string.cpp @@ -1,4 +1,4 @@ -//===-- tsan_string.cc ----------------------------------------------------===// +//===-- tsan_string.cpp ---------------------------------------------------===//  //  // 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/tsan/tests/rtl/tsan_test.cc b/compiler-rt/lib/tsan/tests/rtl/tsan_test.cpp index 51a3b273114..84e6bbcfe47 100644 --- a/compiler-rt/lib/tsan/tests/rtl/tsan_test.cc +++ b/compiler-rt/lib/tsan/tests/rtl/tsan_test.cpp @@ -1,4 +1,4 @@ -//===-- tsan_test.cc ------------------------------------------------------===// +//===-- tsan_test.cpp -----------------------------------------------------===//  //  // 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/tsan/tests/rtl/tsan_test_util_posix.cc b/compiler-rt/lib/tsan/tests/rtl/tsan_test_util_posix.cpp index 767c8294dbd..73c7e9235d0 100644 --- a/compiler-rt/lib/tsan/tests/rtl/tsan_test_util_posix.cc +++ b/compiler-rt/lib/tsan/tests/rtl/tsan_test_util_posix.cpp @@ -1,4 +1,4 @@ -//===-- tsan_test_util_posix.cc -------------------------------------------===// +//===-- tsan_test_util_posix.cpp ------------------------------------------===//  //  // 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/tsan/tests/rtl/tsan_thread.cc b/compiler-rt/lib/tsan/tests/rtl/tsan_thread.cpp index 9e2da912e9b..9d79e0e9429 100644 --- a/compiler-rt/lib/tsan/tests/rtl/tsan_thread.cc +++ b/compiler-rt/lib/tsan/tests/rtl/tsan_thread.cpp @@ -1,4 +1,4 @@ -//===-- tsan_thread.cc ----------------------------------------------------===// +//===-- tsan_thread.cpp ---------------------------------------------------===//  //  // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.  // See https://llvm.org/LICENSE.txt for license information.  | 

