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 | 837e39eaf030cafcf619ddb390cc8a5854784185 (patch) | |
tree | 0791cbe6a928ce401cf2e4361bee39cef7688e95 /etc/TestCmd.py | |
parent | 1bd8df569197d707188d798b0c06b164ff98495a (diff) | |
download | SCons-837e39eaf030cafcf619ddb390cc8a5854784185.zip SCons-837e39eaf030cafcf619ddb390cc8a5854784185.tar.gz SCons-837e39eaf030cafcf619ddb390cc8a5854784185.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) |