From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33322) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bnIId-0003nJ-GZ for qemu-devel@nongnu.org; Fri, 23 Sep 2016 00:41:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bnIIZ-0006NT-Bl for qemu-devel@nongnu.org; Fri, 23 Sep 2016 00:41:22 -0400 Received: from mx1.redhat.com ([209.132.183.28]:48574) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bnIIZ-0006NL-5Y for qemu-devel@nongnu.org; Fri, 23 Sep 2016 00:41:19 -0400 Date: Fri, 23 Sep 2016 12:41:11 +0800 From: Fam Zheng Message-ID: <20160923044111.GE8832@lemon> References: <20160922135724.22304-1-alex.bennee@linaro.org> <20160922135724.22304-3-alex.bennee@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <20160922135724.22304-3-alex.bennee@linaro.org> Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH 2/3] 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 Thu, 09/22 14:57, 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? Could you update the header to reflect the reason in the commit message? > +# > +# 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)" As seen in the other series I pointed out in reply to patch 1, this has b= een expanded in test-quick. > +TARGET_LIST=3D${TARGET_LIST:-$DEF_TARGET_LIST} \ > +build_qemu > --=20 > 2.9.3 >=20 Fam