forked from OSchip/llvm-project
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:
parent
60c66db476
commit
1265d0f44c
|
@ -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
|
||||
|
|
|
@ -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.
|
|
@ -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.
|
|
@ -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.
|
Loading…
Reference in New Issue