def __init__(self, progname, path, quiet,
useValgrind, valgrindLeakCheck, valgrindArgs,
- noExecute, ignoreStdErr, debug, isWindows,
+ noExecute, debug, isWindows,
params, config_prefix = None):
# The name of the test runner.
self.progname = progname
self.valgrindLeakCheck = bool(valgrindLeakCheck)
self.valgrindUserArgs = list(valgrindArgs)
self.noExecute = noExecute
- self.ignoreStdErr = ignoreStdErr
self.debug = debug
self.isWindows = bool(isWindows)
self.params = dict(params)
valgrindLeakCheck = False,
valgrindArgs = [],
noExecute = False,
- ignoreStdErr = False,
debug = False,
isWindows = (platform.system()=='Windows'),
params = {})
# Return a unittest test suite which just runs the tests in order.
return unittest.TestSuite([LitTestCase(test, litConfig) for test in tests])
-
valgrindLeakCheck = opts.valgrindLeakCheck,
valgrindArgs = opts.valgrindArgs,
noExecute = opts.noExecute,
- ignoreStdErr = False,
debug = opts.debug,
isWindows = (platform.system()=='Windows'),
params = userParams,