compiler-rt: Rename .cc file in lib/msan/tests to .cpp

Like r367463, but for msan/tests.

llvm-svn: 367563
This commit is contained in:
Nico Weber 2019-08-01 14:09:37 +00:00
parent 60c66db476
commit 1265d0f44c
4 changed files with 11 additions and 6 deletions

View File

@ -11,12 +11,17 @@ set(MSAN_LIBCXX_CFLAGS
-Wno-pedantic)
# Unittest sources and build flags.
set(MSAN_UNITTEST_SOURCES msan_test.cc msan_test_main.cc)
set(MSAN_LOADABLE_SOURCE msan_loadable.cc)
set(MSAN_UNITTEST_SOURCES
msan_test.cpp
msan_test_main.cpp
)
set(MSAN_LOADABLE_SOURCE
msan_loadable.cpp
)
set(MSAN_UNITTEST_HEADERS
msan_test_config.h
../../../include/sanitizer/msan_interface.h
)
)
set(MSAN_UNITTEST_COMMON_CFLAGS
-nostdinc++
-isystem ${COMPILER_RT_LIBCXX_PATH}/include

View File

@ -1,4 +1,4 @@
//===-- msan_loadable.cc --------------------------------------------------===//
//===-- msan_loadable.cpp -------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.

View File

@ -1,4 +1,4 @@
//===-- msan_test.cc ------------------------------------------------------===//
//===-- msan_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.

View File

@ -1,4 +1,4 @@
//===-- msan_test_main.cc -------------------------------------------------===//
//===-- msan_test_main.cpp ------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.