summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-08-02 00:39:38 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-08-02 00:39:38 +0000
commit6647033565456120ba24d83450bada5bb3096187 (patch)
treead3822c04c30dc44546721f0c7a486096c0a1253 /utils
parente3837014d6793cafdeba99c21dd5682f16131fd5 (diff)
downloadllvm-6647033565456120ba24d83450bada5bb3096187.tar.gz
llvm-6647033565456120ba24d83450bada5bb3096187.tar.bz2
llvm-6647033565456120ba24d83450bada5bb3096187.tar.xz
lit: Allow clients to define predefined parameters.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109999 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rwxr-xr-xutils/lit/lit/lit.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/utils/lit/lit/lit.py b/utils/lit/lit/lit.py
index db0653f796..13d263009d 100755
--- a/utils/lit/lit/lit.py
+++ b/utils/lit/lit/lit.py
@@ -358,8 +358,7 @@ def load_test_suite(inputs):
from LitTestCase import LitTestCase
return unittest.TestSuite([LitTestCase(test, litConfig) for test in tests])
-def main():
- # Bump the GIL check interval, its more important to get any one thread to a
+def main(builtinParameters = {}): # Bump the GIL check interval, its more important to get any one thread to a
# blocking operation (hopefully exec) than to try and unblock other threads.
#
# FIXME: This is a hack.
@@ -469,7 +468,7 @@ def main():
inputs = args
# Create the user defined parameters.
- userParams = {}
+ userParams = dict(builtinParameters)
for entry in opts.userParameters:
if '=' not in entry:
name,val = entry,''