svn commit: r255787 - user/des/tinderbox

Dag-Erling Smørgrav des at FreeBSD.org
Sun Sep 22 13:54:08 UTC 2013


Author: des
Date: Sun Sep 22 13:54:08 2013
New Revision: 255787
URL: http://svnweb.freebsd.org/changeset/base/255787

Log:
  Include the config name in the process title.

Modified:
  user/des/tinderbox/tbmaster.pl

Modified: user/des/tinderbox/tbmaster.pl
==============================================================================
--- user/des/tinderbox/tbmaster.pl	Sun Sep 22 13:36:52 2013	(r255786)
+++ user/des/tinderbox/tbmaster.pl	Sun Sep 22 13:54:08 2013	(r255787)
@@ -274,7 +274,7 @@ sub tinderbox($$$) {
     my $config = expand('CONFIG');
     my $start = time();
 
-    $0 = "tbmaster: building $branch for $arch/$machine";
+    $0 = "tbmaster [$config]: building $branch for $arch/$machine";
 
     $CONFIG{'BRANCH'} = $branch;
     $CONFIG{'ARCH'} = $arch;
@@ -553,7 +553,7 @@ sub tbmaster($) {
 	}
     }
 
-    $0 = "tbmaster: supervisor";
+    $0 = "tbmaster [$config]: supervisor";
     my %children;
     my $done = 0;
     while (@jobs || keys(%children)) {
@@ -576,7 +576,7 @@ sub tbmaster($) {
 	    }
 	    warn("forked child $child for $branch $arch/$machine\n");
 	}
-	$0 = "tbmaster: supervisor (" .
+	$0 = "tbmaster [$config]: supervisor (" .
 	    keys(%children) . " running, " .
 	    @jobs . " pending, " .
 	    $done . " completed)";


More information about the svn-src-user mailing list