aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2003-09-19 09:15:10 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2003-09-19 09:15:10 +0000
commit65c0d0bfeb7405d87fdc35456e537bbe816c0880 (patch)
tree85b8d5c307440535431e93911ee4fbcde26c6f3e
parentda4536cd6d6cef5fc3d8602a84f28bc20c963616 (diff)
Notes
-rw-r--r--tools/tools/tinderbox/tbmaster.pl8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/tools/tinderbox/tbmaster.pl b/tools/tools/tinderbox/tbmaster.pl
index 1f78667a831f..01d6da41729f 100644
--- a/tools/tools/tinderbox/tbmaster.pl
+++ b/tools/tools/tinderbox/tbmaster.pl
@@ -358,11 +358,19 @@ MAIN:{
die("Where is the tinderbox script?\n");
}
+ my $stopfile = expand('SANDBOX') . "/stop";
foreach my $branch (@{$CONFIG{'BRANCHES'}}) {
foreach my $platform (@{$CONFIG{'PLATFORMS'}}) {
+ if (-e $stopfile || -e "$stopfile.$config") {
+ die("stop file found, aborting\n");
+ }
my ($arch, $machine) = split('/', $platform, 2);
$machine = $arch
unless defined($machine);
+ if (-e "$stopfile.$arch" || -e "$stopfile.$arch.$machine") {
+ warn("stop file for $arch/$machine found, skipping\n");
+ next;
+ }
tinderbox($branch, $arch, $machine);
}
}