From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:40489) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tp7Si-0001pJ-R0 for qemu-devel@nongnu.org; Sat, 29 Dec 2012 20:13:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tp7Sg-0001OO-Hg for qemu-devel@nongnu.org; Sat, 29 Dec 2012 20:13:12 -0500 Received: from mx1.redhat.com ([209.132.183.28]:31215) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tp7Sg-0001OI-Aa for qemu-devel@nongnu.org; Sat, 29 Dec 2012 20:13:10 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qBU1D8eo031529 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sat, 29 Dec 2012 20:13:08 -0500 Date: Sun, 30 Dec 2012 09:10:13 +0800 From: Amos Kong Message-ID: <20121230011013.GA1742@t430s.redhat.com> References: <1356829329-30082-1-git-send-email-akong@redhat.com> <1356829329-30082-2-git-send-email-akong@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1356829329-30082-2-git-send-email-akong@redhat.com> Subject: Re: [Qemu-devel] [Autotest PATCH 2/2] virt run: add three logical case filters List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: autotest-kernel@redhat.com Cc: lmr@redhat.com, qemu-devel@nongnu.org, virt-test-devel@redhat.com On Sun, Dec 30, 2012 at 09:02:09AM +0800, Amos Kong wrote: > This patch added there options for filtering cases by logics, > > For example: > ./run -t qemu -c tests.cfg --oronly="WinXP Win7" --andonly="boot 64" --not="sp1" Oh! a typo in commitlog ./run -t qemu -c tests.cfg --or="WinXP Win7" --and="boot 64" --not="sp1" > (following cases will be executed) > > Test 1: virtio_blk.smp2.virtio_net.WinXP.64.boot > Test 2: virtio_blk.smp2.virtio_net.Win7.64.boot ... Amos