From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: [PATCH OSSTEST v2 03/13] osstest migrate support check catch -> variables Date: Mon, 13 Jul 2015 12:14:14 +0100 Message-ID: <1436786054.7019.99.camel@citrix.com> References: <1436718036-7985-1-git-send-email-wei.liu2@citrix.com> <1436718036-7985-4-git-send-email-wei.liu2@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta3.messagelabs.com ([195.245.230.39]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1ZEbgm-0002hr-5s for xen-devel@lists.xenproject.org; Mon, 13 Jul 2015 11:14:24 +0000 In-Reply-To: <1436718036-7985-4-git-send-email-wei.liu2@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Wei Liu Cc: Xen-devel , Ian Jackson List-Id: xen-devel@lists.xenproject.org On Sun, 2015-07-12 at 17:20 +0100, Wei Liu wrote: > @@ -300,7 +300,9 @@ proc run-job/test-pair {} { > } > > proc test-guest-migr {g} { > - if {[catch { run-ts . = ts-migrate-support-check + host $g }]} return > + set to_reap [spawn-ts . = ts-migrate-support-check + host $g] Most other uses of spawn-ts use [eval spawn-ts ]. I think those are just trying to expand a $args into multiple arguments to spawn-ts, and hence that isn't needed here (because $g is a singleton argument already). But TBH I don't know...