diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-08 01:47:35 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-08 01:47:35 +0000 |
commit | bc20ef3150556718b33f2a9da78c204f1bb89548 (patch) | |
tree | b2411762f45d2055a51623522ce6ced3c4c03bd2 | |
parent | 2475d76920b43014e661690836642ca3c9967179 (diff) |
Drop require_and_and argument.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86433 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/lit.cfg | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index 83de9eaabb..6fa6742a4a 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -13,8 +13,7 @@ config.name = 'Clang' # For now we require '&&' between commands, until they get globally killed and # the test runner updated. execute_external = platform.system() != 'Windows' -config.test_format = lit.formats.ShTest(execute_external, - require_and_and = False) +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'] |