diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-15 08:10:29 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-15 08:10:29 +0000 |
commit | 2cb097d5cddfc9ac7d9f4973f9f8a3d2c9feea72 (patch) | |
tree | f741157a32e0632034fde4720390531cf5b520d7 /utils/lit/LitFormats.py | |
parent | feb8018764da86105ab0b607e54401e627c8c82e (diff) | |
download | external_llvm-2cb097d5cddfc9ac7d9f4973f9f8a3d2c9feea72.zip external_llvm-2cb097d5cddfc9ac7d9f4973f9f8a3d2c9feea72.tar.gz external_llvm-2cb097d5cddfc9ac7d9f4973f9f8a3d2c9feea72.tar.bz2 |
lit: Factor a new OneCommandPerFileTest out of SyntaxCheckTest.
- Used for running a single fixed command on a directory of files, with the
option of deriving a temporary input file from the test source.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@88844 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/lit/LitFormats.py')
-rw-r--r-- | utils/lit/LitFormats.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/lit/LitFormats.py b/utils/lit/LitFormats.py index 9b8250d..270f087 100644 --- a/utils/lit/LitFormats.py +++ b/utils/lit/LitFormats.py @@ -1,2 +1,3 @@ -from TestFormats import GoogleTest, ShTest, TclTest, SyntaxCheckTest +from TestFormats import GoogleTest, ShTest, TclTest +from TestFormats import SyntaxCheckTest, OneCommandPerFileTest |