diff options
| author | Nico Weber <nicolasweber@gmx.de> | 2019-10-15 14:46:39 +0000 |
|---|---|---|
| committer | Nico Weber <nicolasweber@gmx.de> | 2019-10-15 14:46:39 +0000 |
| commit | b4638f9ff063a29e84b2d6b949ee4f7d27e4c2ab (patch) | |
| tree | 79427a0c40b6ecd133a1f6dee91e1276f0629d02 /clang/test/CXX/concepts-ts/dcl.dcl/lit.cfg.py | |
| parent | 52d2a567b5ea4f2ec6d1dd5e9b5661ca8b763eae (diff) | |
| download | bcm5719-llvm-b4638f9ff063a29e84b2d6b949ee4f7d27e4c2ab.tar.gz bcm5719-llvm-b4638f9ff063a29e84b2d6b949ee4f7d27e4c2ab.zip | |
Revert 374882 "[Concepts] Concept Specialization Expressions"
This reverts commit ec87b003823d63f3342cf648f55a134c1522e612.
The test fails on Windows, see e.g.
http://lab.llvm.org:8011/builders/clang-x64-windows-msvc/builds/11533/steps/stage%201%20check/logs/stdio
Also revert follow-up r374893.
llvm-svn: 374899
Diffstat (limited to 'clang/test/CXX/concepts-ts/dcl.dcl/lit.cfg.py')
| -rw-r--r-- | clang/test/CXX/concepts-ts/dcl.dcl/lit.cfg.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/clang/test/CXX/concepts-ts/dcl.dcl/lit.cfg.py b/clang/test/CXX/concepts-ts/dcl.dcl/lit.cfg.py new file mode 100644 index 00000000000..c705e3cb93b --- /dev/null +++ b/clang/test/CXX/concepts-ts/dcl.dcl/lit.cfg.py @@ -0,0 +1,26 @@ +# -*- Python -*- + +import os +import lit.formats + +from lit.llvm import llvm_config + +# Configuration file for the 'lit' test runner. + +# name: The name of this test suite. +config.name = 'Clang-Concepts-TS-Unsupported' + +# testFormat: The test format to use to interpret tests. +# +# For now we require '&&' between commands, until they get globally killed and +# the test runner updated. +config.test_format = lit.formats.ShTest(not llvm_config.use_lit_shell) + +# suffixes: A list of file extensions to treat as test files. +config.suffixes = ['.c', '.cpp', '.cppm', '.m', '.mm', '.cu', + '.ll', '.cl', '.s', '.S', '.modulemap', '.test', '.rs'] + +config.unsupported = True + +# test_source_root: The root path where tests are located. +config.test_source_root = os.path.dirname(__file__) |

