diff options
author | Steven Knight <knight@baldmt.com> | 2002-05-06 22:27:28 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-05-06 22:27:28 (GMT) |
commit | a2ceacbe77db1b308f26454477ae3b1f1139eac8 (patch) | |
tree | 8f1532baef4ea475eb5ff7bff4e74b15e7d48a27 /etc | |
parent | 06b66d7da2547d860be7a124c54d3ddf2ee964e1 (diff) | |
download | SCons-a2ceacbe77db1b308f26454477ae3b1f1139eac8.zip SCons-a2ceacbe77db1b308f26454477ae3b1f1139eac8.tar.gz SCons-a2ceacbe77db1b308f26454477ae3b1f1139eac8.tar.bz2 |
Raise an error if a builder is called multiple times for a given target, unless the builder is marked as multicall safe. (Anthony Roach)
Diffstat (limited to 'etc')
-rw-r--r-- | etc/TestCmd.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/etc/TestCmd.py b/etc/TestCmd.py index 912be48..2d1c932 100644 --- a/etc/TestCmd.py +++ b/etc/TestCmd.py @@ -186,6 +186,16 @@ def match_re(lines = None, res = None): return return 1 +def match_re_dotall(lines = None, res = None): + """ + """ + if not type(lines) is type(""): + lines = join(lines, "\n") + if not type(res) is type(""): + res = join(res, "\n") + if re.compile("^" + res + "$", re.DOTALL).match(lines): + return 1 + class TestCmd: """Class TestCmd """ |