From: Ian Jackson Date: Tue, 1 Sep 2015 18:18:35 +0000 (+0100) Subject: Planner: ms-queuedaemon: Make report-plan take output walker name X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=21f38e5ffeba5da21dc56d1bf42946b05a7dc68c;p=people%2Fdariof%2Fosstest.git Planner: ms-queuedaemon: Make report-plan take output walker name We are going to want to process each walker's data into reports which are not necessarily named after the same walker. No functional change as yet. Signed-off-by: Ian Jackson Acked-by: Ian Campbell --- diff --git a/ms-queuedaemon b/ms-queuedaemon index 1fe555d..811f0ee 100755 --- a/ms-queuedaemon +++ b/ms-queuedaemon @@ -138,7 +138,7 @@ proc runneeded-perhaps-start {} { if {![llength $queue]} { plan-reset plan - report-plan plan + report-plan plan plan return } @@ -174,7 +174,7 @@ proc runneeded-perhaps-start {} { proc queuerun-finished/plan {} { runneeded-ensure-will 0 - report-plan plan + report-plan plan plan } proc runneeded-ensure-polling {} { @@ -272,10 +272,10 @@ proc queuerun-perhaps-step {w} { notify-to-think $w $thinking } -proc report-plan {w} { +proc report-plan {w wo} { global c if {[catch { - set outputfile "$c(WebspaceFile)/resource-$w.html" + set outputfile "$c(WebspaceFile)/resource-$wo.html" exec ./ms-planner -w$w show-html > $outputfile } emsg]} { log "INTERNAL ERROR showing $w html: $emsg"