diff options
author | Nico Weber <nicolasweber@gmx.de> | 2019-08-05 19:25:35 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2019-08-05 19:25:35 +0000 |
commit | 307beb13afad24958fb05fd98acd11e1dace34e9 (patch) | |
tree | 8b781b029ba4b6cd4e8d30d59997fdaf17172d74 /compiler-rt/test/shadowcallstack/lit.cfg.py | |
parent | 78769ec403873ba243a5131150851f5ffaec6e9d (diff) | |
download | bcm5719-llvm-307beb13afad24958fb05fd98acd11e1dace34e9.tar.gz bcm5719-llvm-307beb13afad24958fb05fd98acd11e1dace34e9.zip |
compiler-rt: Remove .cc from all lit config files
All cc files have been renamed to cpp now.
llvm-svn: 367911
Diffstat (limited to 'compiler-rt/test/shadowcallstack/lit.cfg.py')
-rw-r--r-- | compiler-rt/test/shadowcallstack/lit.cfg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/shadowcallstack/lit.cfg.py b/compiler-rt/test/shadowcallstack/lit.cfg.py index d04d37831dd..fc736af8c4f 100644 --- a/compiler-rt/test/shadowcallstack/lit.cfg.py +++ b/compiler-rt/test/shadowcallstack/lit.cfg.py @@ -9,7 +9,7 @@ config.name = 'ShadowCallStack' config.test_source_root = os.path.dirname(__file__) # Test suffixes. -config.suffixes = ['.c', '.cc', '.cpp', '.m', '.mm', '.ll', '.test'] +config.suffixes = ['.c', '.cpp', '.m', '.mm', '.ll', '.test'] # Add clang substitutions. config.substitutions.append( ("%clang_noscs ", config.clang + ' -O0 -fno-sanitize=shadow-call-stack ' + config.target_cflags + ' ') ) |