mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
[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:
parent
6214ae5eff
commit
cd594283f7
@ -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)
|
||||
|
@ -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])
|
||||
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user