forked from OSchip/llvm-project
[lit] Fix the lit unit tests.
A few tests were manually constructing a LitConfig object, since I added a new argument to it this was triggering some failures I didn't detect. `ninja check-lit` passes now. llvm-svn: 313461
This commit is contained in:
parent
42b6dcbcef
commit
f734daf36d
|
@ -257,6 +257,7 @@ def load_test_suite(inputs):
|
|||
useValgrind = False,
|
||||
valgrindLeakCheck = False,
|
||||
valgrindArgs = [],
|
||||
singleProcess=False,
|
||||
noExecute = False,
|
||||
debug = False,
|
||||
isWindows = (platform.system()=='Windows'),
|
||||
|
|
|
@ -28,6 +28,7 @@ class TestIntegratedTestKeywordParser(unittest.TestCase):
|
|||
quiet=False,
|
||||
useValgrind=False,
|
||||
valgrindLeakCheck=False,
|
||||
singleProcess=False,
|
||||
valgrindArgs=[],
|
||||
noExecute=False,
|
||||
debug=False,
|
||||
|
|
Loading…
Reference in New Issue