[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:
Zachary Turner 2017-09-16 15:48:30 +00:00
parent 42b6dcbcef
commit f734daf36d
2 changed files with 2 additions and 0 deletions

View File

@ -257,6 +257,7 @@ def load_test_suite(inputs):
useValgrind = False,
valgrindLeakCheck = False,
valgrindArgs = [],
singleProcess=False,
noExecute = False,
debug = False,
isWindows = (platform.system()=='Windows'),

View File

@ -28,6 +28,7 @@ class TestIntegratedTestKeywordParser(unittest.TestCase):
quiet=False,
useValgrind=False,
valgrindLeakCheck=False,
singleProcess=False,
valgrindArgs=[],
noExecute=False,
debug=False,