diff options
author | Steven Knight <knight@baldmt.com> | 2001-09-29 03:22:21 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-09-29 03:22:21 (GMT) |
commit | 39bc5ccf18d346c14ade0cce6e6f46e53b88fd97 (patch) | |
tree | ecaa1c4b2a002298458f72d48e131d5534079c30 /etc | |
parent | 8a28cfb1801cbada701e471b7ca9ea78db137221 (diff) | |
download | SCons-39bc5ccf18d346c14ade0cce6e6f46e53b88fd97.zip SCons-39bc5ccf18d346c14ade0cce6e6f46e53b88fd97.tar.gz SCons-39bc5ccf18d346c14ade0cce6e6f46e53b88fd97.tar.bz2 |
Make match_exact the default match function for TestSCons.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/TestSCons.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/etc/TestSCons.py b/etc/TestSCons.py index 3141989..959e568 100644 --- a/etc/TestSCons.py +++ b/etc/TestSCons.py @@ -45,6 +45,7 @@ class TestSCons(TestCmd.TestCmd): program = 'scons' if it exists, else 'scons.py' interpreter = 'python' + match = TestCmd.match_exact workdir = '' The workdir value means that, by default, a temporary workspace @@ -60,6 +61,8 @@ class TestSCons(TestCmd.TestCmd): kw['program'] = 'scons.py' if not kw.has_key('interpreter'): kw['interpreter'] = 'python' + if not kw.has_key('match'): + kw['match'] = TestCmd.match_exact if not kw.has_key('workdir'): kw['workdir'] = '' apply(TestCmd.TestCmd.__init__, [self], kw) |