/3rd_party/llvm/utils/lit/lit/ExampleTests/lit.cfg

https://code.google.com/p/softart/ · Unknown · 26 lines · 18 code · 8 blank · 0 comment · 0 complexity · 52b11d3faad6c4686741ea2a285e197e MD5 · raw file

  1. # -*- Python -*-
  2. # Configuration file for the 'lit' test runner.
  3. # name: The name of this test suite.
  4. config.name = 'Examples'
  5. # suffixes: A list of file extensions to treat as test files.
  6. config.suffixes = ['.c', '.cpp', '.m', '.mm', '.ll']
  7. # testFormat: The test format to use to interpret tests.
  8. config.test_format = lit.formats.ShTest()
  9. # test_source_root: The path where tests are located (default is the test suite
  10. # root).
  11. config.test_source_root = None
  12. # test_exec_root: The path where tests are located (default is the test suite
  13. # root).
  14. config.test_exec_root = None
  15. # target_triple: Used by ShTest and TclTest formats for XFAIL checks.
  16. config.target_triple = 'foo'
  17. # available_features: Used by ShTest and TclTest formats for REQUIRES checks.
  18. config.available_features = ['some-feature-name']