From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38694) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b4jko-0006MK-7m for qemu-devel@nongnu.org; Mon, 23 May 2016 02:54:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b4jkn-0008CS-9o for qemu-devel@nongnu.org; Mon, 23 May 2016 02:54:18 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33234) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b4jkn-0008CC-3j for qemu-devel@nongnu.org; Mon, 23 May 2016 02:54:17 -0400 From: Fam Zheng Date: Mon, 23 May 2016 14:54:19 +0800 Message-Id: <1463986466-764-8-git-send-email-famz@redhat.com> In-Reply-To: <1463986466-764-1-git-send-email-famz@redhat.com> References: <1463986466-764-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 v5 07/14] docker: Add quick test List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Alex=20Benn=C3=A9e?= 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