aboutsummaryrefslogtreecommitdiffstats
path: root/utils/lit/lit/discovery.py
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2013-08-09 00:09:02 +0000
committerDaniel Dunbar <daniel@zuster.org>2013-08-09 00:09:02 +0000
commit49e51429c1e1cf37b2cc23fdf208d9f470acf430 (patch)
tree6ad06a303e934d626ba3a908de7692e02b469e22 /utils/lit/lit/discovery.py
parent3279653eb85d2f09175f6a2deb0a12b93fed9ecf (diff)
downloadexternal_llvm-49e51429c1e1cf37b2cc23fdf208d9f470acf430.zip
external_llvm-49e51429c1e1cf37b2cc23fdf208d9f470acf430.tar.gz
external_llvm-49e51429c1e1cf37b2cc23fdf208d9f470acf430.tar.bz2
[lit] Eliminate mustExist parameter from TestingConfig.frompath().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188034 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/lit/lit/discovery.py')
-rw-r--r--utils/lit/lit/discovery.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lit/lit/discovery.py b/utils/lit/lit/discovery.py
index afcee58..c5f48a6 100644
--- a/utils/lit/lit/discovery.py
+++ b/utils/lit/lit/discovery.py
@@ -42,7 +42,7 @@ def getTestSuite(item, litConfig, cache):
if litConfig.debug:
litConfig.note('loading suite config %r' % cfgpath)
- cfg = TestingConfig.frompath(cfgpath, None, litConfig, mustExist = True)
+ cfg = TestingConfig.frompath(cfgpath, None, litConfig)
source_root = os.path.realpath(cfg.test_source_root or path)
exec_root = os.path.realpath(cfg.test_exec_root or path)
return Test.TestSuite(cfg.name, source_root, exec_root, cfg), ()