diff options
author | des <des@FreeBSD.org> | 2003-05-16 10:55:49 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2003-05-16 10:55:49 +0000 |
commit | bd0c33f6696052f62ecd8c3c18625c006f3dbb89 (patch) | |
tree | 4e45a1bf90c8a2f4186a34338b0ea936b20026ed /tools | |
parent | 7658c8da7d7d2e9c9207edbad64b2d40206bab3f (diff) | |
download | FreeBSD-src-bd0c33f6696052f62ecd8c3c18625c006f3dbb89.zip FreeBSD-src-bd0c33f6696052f62ecd8c3c18625c006f3dbb89.tar.gz |
Don't be so sensitive; /\bStop\b/ can occur in normal output and trick
tbmaster into thinking the build failed. Look for /^Stop in / instead.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/tinderbox/tbmaster.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/tools/tinderbox/tbmaster.pl b/tools/tools/tinderbox/tbmaster.pl index e5ffc80..86bbf36 100644 --- a/tools/tools/tinderbox/tbmaster.pl +++ b/tools/tools/tinderbox/tbmaster.pl @@ -245,7 +245,7 @@ sub tinderbox($$$) { @lines = (); next; } - if (/\bStop\b/) { + if (/^Stop in /) { $error = 1; } if (@lines > 10 && !$error) { |