diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-09-14 02:38:46 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-09-14 02:38:46 +0000 |
commit | 00a42449ecd9aa243d844ffd1e473fd88fe1a2b1 (patch) | |
tree | 17b44010437ffca31b69f7840ede82caef1ccbb9 /utils/lit/LitFormats.py | |
parent | af7263d51edaf55f56808fd7796d1a910aac46ee (diff) |
lit: Give test formats control over test discovery.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81751 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/lit/LitFormats.py')
-rw-r--r-- | utils/lit/LitFormats.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/lit/LitFormats.py b/utils/lit/LitFormats.py index cc00ddc7e7..e22f84bf89 100644 --- a/utils/lit/LitFormats.py +++ b/utils/lit/LitFormats.py @@ -1,2 +1,2 @@ -from ShTest import ShTest -from TclTest import TclTest +from TestFormats import GoogleTest, ShTest, TclTest + |