diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2010-12-01 04:22:41 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2010-12-01 04:22:41 +0000 |
commit | 4f9e97138d3508497a00ea44ee4d4f6fc09f1459 (patch) | |
tree | 6ccef6922567b270b59aed7efb7aba8faaf09bd2 | |
parent | ced7671c18e115ac3c3f54abfaaafcc6d33edc4c (diff) |
test: add .cu extension
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120553 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/lit.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index 19e8b0b7ab..071284f955 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -16,7 +16,7 @@ execute_external = platform.system() != 'Windows' config.test_format = lit.formats.ShTest(execute_external) # suffixes: A list of file extensions to treat as test files. -config.suffixes = ['.c', '.cpp', '.m', '.mm', '.ll'] +config.suffixes = ['.c', '.cpp', '.m', '.mm', '.cu', '.ll'] # test_source_root: The root path where tests are located. config.test_source_root = os.path.dirname(__file__) |