summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2003-05-16 10:55:49 +0000
committerdes <des@FreeBSD.org>2003-05-16 10:55:49 +0000
commitbd0c33f6696052f62ecd8c3c18625c006f3dbb89 (patch)
tree4e45a1bf90c8a2f4186a34338b0ea936b20026ed /tools
parent7658c8da7d7d2e9c9207edbad64b2d40206bab3f (diff)
downloadFreeBSD-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.pl2
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) {
OpenPOWER on IntegriCloud