• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import lit.formats
2config.name = 'googletest-timeout'
3config.test_format = lit.formats.GoogleTest('DummySubDir', 'Test')
4
5configSetTimeout = lit_config.params.get('set_timeout', '0')
6
7if configSetTimeout == '1':
8    # Try setting the max individual test time in the configuration
9    lit_config.maxIndividualTestTime = 1
10