You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
321 B
10 lines
321 B
4 months ago
|
import lit.formats
|
||
|
config.name = 'googletest-timeout'
|
||
|
config.test_format = lit.formats.GoogleTest('DummySubDir', 'Test')
|
||
|
|
||
|
configSetTimeout = lit_config.params.get('set_timeout', '0')
|
||
|
|
||
|
if configSetTimeout == '1':
|
||
|
# Try setting the max individual test time in the configuration
|
||
|
lit_config.maxIndividualTestTime = 1
|