[lit] Remove dead ignoreStdError argument.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187849 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2013-08-07 03:08:46 +00:00
parent 6214ae5eff
commit cd594283f7
3 changed files with 1 additions and 5 deletions

View File

@ -19,7 +19,7 @@ class LitConfig:
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
@ -30,7 +30,6 @@ class LitConfig:
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)

View File

@ -233,7 +233,6 @@ def load_test_suite(inputs):
valgrindLeakCheck = False,
valgrindArgs = [],
noExecute = False,
ignoreStdErr = False,
debug = False,
isWindows = (platform.system()=='Windows'),
params = {})
@ -242,4 +241,3 @@ def load_test_suite(inputs):
# Return a unittest test suite which just runs the tests in order.
return unittest.TestSuite([LitTestCase(test, litConfig) for test in tests])

View File

@ -281,7 +281,6 @@ def main(builtinParameters = {}):
valgrindLeakCheck = opts.valgrindLeakCheck,
valgrindArgs = opts.valgrindArgs,
noExecute = opts.noExecute,
ignoreStdErr = False,
debug = opts.debug,
isWindows = (platform.system()=='Windows'),
params = userParams,