[lit] Fix the timeout.

The timeout wasn't working because it's a property of the lit
configuration, not of the configuration in lit.site.cfg. This sets the
property for the correct object.

llvm-svn: 359492
This commit is contained in:
Jonas Devlieghere 2019-04-29 19:55:49 +00:00
parent 028485d7b9
commit f3ac8712ff
2 changed files with 3 additions and 1 deletions

View File

@ -74,6 +74,9 @@ for i in ['module-cache-clang', 'module-cache-lldb']:
print("Deleting module cache at %s."%cachedir)
shutil.rmtree(cachedir)
# Set a default timeout of 10 minutes.
lit_config.maxIndividualTestTime = 600
# If running tests natively, check for CPU features needed for some tests.
if 'native' in config.available_features:

View File

@ -20,7 +20,6 @@ config.lldb_bitness = 64 if @LLDB_IS_64_BITS@ else 32
config.lldb_disable_python = @LLDB_DISABLE_PYTHON@
config.have_lldb_instr = @LLDB_TOOL_LLDB_INSTR_BUILD@
config.have_lldb_vscode = @LLDB_TOOL_LLDB_VSCODE_BUILD@
config.maxIndividualTestTime = 600
# Support substitution of the tools and libs dirs with user parameters. This is
# used when we can't determine the tool dir at configuration time.