From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45430) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1btsTS-0004AP-Lb for qemu-devel@nongnu.org; Tue, 11 Oct 2016 04:31:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1btsTM-0000Vq-NZ for qemu-devel@nongnu.org; Tue, 11 Oct 2016 04:31:45 -0400 Received: from mx1.redhat.com ([209.132.183.28]:44196) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1btsTM-0000Vh-Hq for qemu-devel@nongnu.org; Tue, 11 Oct 2016 04:31:40 -0400 Date: Tue, 11 Oct 2016 16:31:37 +0800 From: Fam Zheng Message-ID: <20161011083137.GC5814@lemon> References: <20161003163212.8101-1-alex.bennee@linaro.org> <20161003163212.8101-3-alex.bennee@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <20161003163212.8101-3-alex.bennee@linaro.org> Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v2 2/4] tests/docker: test-build script List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alex =?iso-8859-1?Q?Benn=E9e?= Cc: qemu-devel@nongnu.org On Mon, 10/03 17:32, Alex Benn=E9e wrote: > Much like test-quick but only builds. This is useful for some of the > build targets like ThreadSanitizer that don't yet pass "make check". >=20 > Signed-off-by: Alex Benn=E9e > --- > tests/docker/test-build | 18 ++++++++++++++++++ > 1 file changed, 18 insertions(+) > create mode 100755 tests/docker/test-build >=20 > diff --git a/tests/docker/test-build b/tests/docker/test-build > new file mode 100755 > index 0000000..d237ead > --- /dev/null > +++ b/tests/docker/test-build > @@ -0,0 +1,18 @@ > +#!/bin/bash -e > +# > +# Quick compiling test that everyone already does. But why not automat= e it? > +# > +# Copyright (c) 2016 Red Hat Inc. > +# > +# Authors: > +# Fam Zheng > +# > +# This work is licensed under the terms of the GNU GPL, version 2 > +# or (at your option) any later version. See the COPYING file in > +# the top-level directory. > + > +. common.rc > + > +DEF_TARGET_LIST=3D"$(echo {x86_64,aarch64}-softmmu)" Like I said in v1, better flatten this to "x86_64-softmmu,aarch64-softmmu= " as it is in test-quick now. Fam > +TARGET_LIST=3D${TARGET_LIST:-$DEF_TARGET_LIST} \ > +build_qemu > --=20 > 2.9.3 >=20