diff options
author | Steven Knight <knight@baldmt.com> | 2004-03-21 05:37:23 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-03-21 05:37:23 (GMT) |
commit | bfbe139e5a5fd96dfa0319768ad9a0088a5e7e78 (patch) | |
tree | 0791cbe6a928ce401cf2e4361bee39cef7688e95 /etc/TestCmd.py | |
parent | 726790558e9e9b22ec0897ceeae5b83144197fe5 (diff) | |
download | SCons-bfbe139e5a5fd96dfa0319768ad9a0088a5e7e78.zip SCons-bfbe139e5a5fd96dfa0319768ad9a0088a5e7e78.tar.gz SCons-bfbe139e5a5fd96dfa0319768ad9a0088a5e7e78.tar.bz2 |
Cygwin portability fixes. (Chad Austin) Improved testing infrastructure.
Diffstat (limited to 'etc/TestCmd.py')
-rw-r--r-- | etc/TestCmd.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/etc/TestCmd.py b/etc/TestCmd.py index 61fa2a7..ca89ed9 100644 --- a/etc/TestCmd.py +++ b/etc/TestCmd.py @@ -173,8 +173,8 @@ version. # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. __author__ = "Steven Knight <knight at baldmt dot com>" -__revision__ = "TestCmd.py 0.04.D010 2004/01/27 00:11:44 knight" -__version__ = "0.04" +__revision__ = "TestCmd.py 0.6.D001 2004/03/20 17:39:42 knight" +__version__ = "0.6" import os import os.path @@ -190,6 +190,10 @@ import traceback import types import UserList +__all__ = [ 'fail_test', 'no_result', 'pass_test', + 'match_exact', 'match_re', 'match_re_dotall', + 'python_executable', 'TestCmd' ] + def is_List(e): return type(e) is types.ListType \ or isinstance(e, UserList.UserList) |