From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33198) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7xjA-0003Fb-On for qemu-devel@nongnu.org; Wed, 01 Jun 2016 00:25:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b7xj5-00072G-V9 for qemu-devel@nongnu.org; Wed, 01 Jun 2016 00:25:56 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59744) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7xj5-000727-Ox for qemu-devel@nongnu.org; Wed, 01 Jun 2016 00:25:51 -0400 From: Fam Zheng Date: Wed, 1 Jun 2016 12:25:21 +0800 Message-Id: <1464755128-32490-9-git-send-email-famz@redhat.com> In-Reply-To: <1464755128-32490-1-git-send-email-famz@redhat.com> References: <1464755128-32490-1-git-send-email-famz@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH v7 08/15] docker: Add quick test List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Fam Zheng , alex.bennee@linaro.org, pbonzini@redhat.com Reviewed-by: Alex Benn=C3=A9e 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=3D"$(echo {x86_64,aarch64}-softmmu)" +TARGET_LIST=3D${TARGET_LIST:-$DEF_TARGET_LIST} \ +build_qemu +make check $MAKEFLAGS --=20 2.8.2