compiler-rt: Rename .cc file in test/xray to .cpp

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
This commit is contained in:
Fangrui Song 2019-08-02 05:49:58 +00:00
parent c1981b2b26
commit 6db8c59f21
29 changed files with 1 additions and 1 deletions

View 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