diff options
Diffstat (limited to 'utils/lit/LitConfig.py')
-rw-r--r-- | utils/lit/LitConfig.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/lit/LitConfig.py b/utils/lit/LitConfig.py index c334109..0e0a493 100644 --- a/utils/lit/LitConfig.py +++ b/utils/lit/LitConfig.py @@ -17,7 +17,8 @@ class LitConfig: def __init__(self, progname, path, quiet, useValgrind, valgrindArgs, useTclAsSh, - noExecute, debug, isWindows): + noExecute, debug, isWindows, + params): # The name of the test runner. self.progname = progname # The items to add to the PATH environment variable. @@ -29,6 +30,7 @@ class LitConfig: self.noExecute = noExecute self.debug = debug self.isWindows = bool(isWindows) + self.params = dict(params) self.bashPath = None self.numErrors = 0 |