compiler-rt: Rename .cc file in test/xray to .cpp
authorFangrui Song <maskray@google.com>
Fri, 2 Aug 2019 05:49:58 +0000 (05:49 +0000)
committerFangrui Song <maskray@google.com>
Fri, 2 Aug 2019 05:49:58 +0000 (05:49 +0000)
Like r367463, but for test/xray.

Update test/xray/lit.cfg.py config.suffixes to remove .cc (we actually
don't have .c tests now)

llvm-svn: 367652

29 files changed:
compiler-rt/test/xray/TestCases/Posix/always-never-instrument.cpp [moved from compiler-rt/test/xray/TestCases/Posix/always-never-instrument.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/arg1-arg0-logging.cpp [moved from compiler-rt/test/xray/TestCases/Posix/arg1-arg0-logging.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/arg1-logger.cpp [moved from compiler-rt/test/xray/TestCases/Posix/arg1-logger.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/arg1-logging-implicit-this.cpp [moved from compiler-rt/test/xray/TestCases/Posix/arg1-logging-implicit-this.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/argv0-log-file-name.cpp [moved from compiler-rt/test/xray/TestCases/Posix/argv0-log-file-name.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/basic-filtering.cpp [moved from compiler-rt/test/xray/TestCases/Posix/basic-filtering.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/c-test.cpp [moved from compiler-rt/test/xray/TestCases/Posix/c-test.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/clang-no-xray-instrument.cpp [moved from compiler-rt/test/xray/TestCases/Posix/clang-no-xray-instrument.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/common-trampoline-alignment.cpp [moved from compiler-rt/test/xray/TestCases/Posix/common-trampoline-alignment.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/coverage-sample.cpp [moved from compiler-rt/test/xray/TestCases/Posix/coverage-sample.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/custom-event-handler-alignment.cpp [moved from compiler-rt/test/xray/TestCases/Posix/custom-event-handler-alignment.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/custom-event-logging.cpp [moved from compiler-rt/test/xray/TestCases/Posix/custom-event-logging.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/fdr-mode-inmemory.cpp [moved from compiler-rt/test/xray/TestCases/Posix/fdr-mode-inmemory.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/fdr-mode-multiple.cpp [moved from compiler-rt/test/xray/TestCases/Posix/fdr-mode-multiple.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/fdr-mode.cpp [moved from compiler-rt/test/xray/TestCases/Posix/fdr-mode.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/fdr-reinit.cpp [moved from compiler-rt/test/xray/TestCases/Posix/fdr-reinit.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/fdr-single-thread.cpp [moved from compiler-rt/test/xray/TestCases/Posix/fdr-single-thread.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/fdr-thread-order.cpp [moved from compiler-rt/test/xray/TestCases/Posix/fdr-thread-order.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/fixedsize-logging.cpp [moved from compiler-rt/test/xray/TestCases/Posix/fixedsize-logging.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/fork_basic_logging.cpp [moved from compiler-rt/test/xray/TestCases/Posix/fork_basic_logging.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/func-id-utils.cpp [moved from compiler-rt/test/xray/TestCases/Posix/func-id-utils.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/logging-modes.cpp [moved from compiler-rt/test/xray/TestCases/Posix/logging-modes.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/optional-inmemory-log.cpp [moved from compiler-rt/test/xray/TestCases/Posix/optional-inmemory-log.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/patching-unpatching.cpp [moved from compiler-rt/test/xray/TestCases/Posix/patching-unpatching.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/pic_test.cpp [moved from compiler-rt/test/xray/TestCases/Posix/pic_test.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/profiling-multi-threaded.cpp [moved from compiler-rt/test/xray/TestCases/Posix/profiling-multi-threaded.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/profiling-single-threaded.cpp [moved from compiler-rt/test/xray/TestCases/Posix/profiling-single-threaded.cc with 100% similarity]
compiler-rt/test/xray/TestCases/Posix/quiet-start.cpp [moved from compiler-rt/test/xray/TestCases/Posix/quiet-start.cc with 100% similarity]
compiler-rt/test/xray/lit.cfg.py

index cc4cc21..782d5a8 100644 (file)
@@ -51,7 +51,7 @@ config.substitutions.append(
         % (libdl_flag, config.compiler_rt_libdir, config.target_suffix)))
 
 # Default test suffixes.
-config.suffixes = ['.c', '.cc', '.cpp']
+config.suffixes = ['.c', '.cpp']
 
 if config.host_os not in ['FreeBSD', 'Linux', 'NetBSD', 'OpenBSD']:
   config.unsupported = True