1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

lit: Expose FileBasedTest object and Test module via 'lit' object that gets

exposed to config files.

llvm-svn: 113923
This commit is contained in:
Daniel Dunbar 2010-09-15 03:52:38 +00:00
parent 24c29a251d
commit 14e18ee412
2 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,9 @@ class LitConfig:
easily.
"""
# Provide access to Test module.
import Test
# Provide access to built-in formats.
import LitFormats as formats

View File

@ -1,2 +1,3 @@
from TestFormats import FileBasedTest
from TestFormats import GoogleTest, ShTest, TclTest
from TestFormats import SyntaxCheckTest, OneCommandPerFileTest