From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44850) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aePdG-00071r-Aq for qemu-devel@nongnu.org; Fri, 11 Mar 2016 11:09:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aePdB-00044M-3W for qemu-devel@nongnu.org; Fri, 11 Mar 2016 11:09:42 -0500 Received: from mail-wm0-x229.google.com ([2a00:1450:400c:c09::229]:33139) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aePdA-00044H-Sv for qemu-devel@nongnu.org; Fri, 11 Mar 2016 11:09:37 -0500 Received: by mail-wm0-x229.google.com with SMTP id l68so24133640wml.0 for ; Fri, 11 Mar 2016 08:09:36 -0800 (PST) References: <1457086720-30391-1-git-send-email-famz@redhat.com> <1457086720-30391-7-git-send-email-famz@redhat.com> From: Alex =?utf-8?Q?Benn=C3=A9e?= In-reply-to: <1457086720-30391-7-git-send-email-famz@redhat.com> Date: Fri, 11 Mar 2016 16:09:34 +0000 Message-ID: <87pov1t2rl.fsf@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH v3 06/13] docker: Add quick test List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng Cc: kwolf@redhat.com, peter.maydell@linaro.org, sw@weilnetz.de, qemu-devel@nongnu.org, stefanha@redhat.com, Paolo Bonzini , jsnow@redhat.com, david@gibson.dropbear.id.au Fam Zheng writes: > Signed-off-by: Fam Zheng > --- > tests/docker/test-quick | 19 +++++++++++++++++++ > 1 file changed, 19 insertions(+) > create mode 100755 tests/docker/test-quick > > diff --git a/tests/docker/test-quick b/tests/docker/test-quick > new file mode 100755 > index 0000000..07cdc59 > --- /dev/null > +++ b/tests/docker/test-quick > @@ -0,0 +1,19 @@ > +#!/bin/bash -e > +# > +# Quick compiling test that everyone already does. But why not automate 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="$(echo {x86_64,aarch64}-softmmu)" The default target list seems a little arbitrary but whatever: Reviewed-by: Alex Bennée > +TARGET_LIST=${TARGET_LIST:-$DEF_TARGET_LIST} \ > +build_qemu > +make check $MAKEFLAGS -- Alex Bennée