From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46633) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b6AxL-0005v3-PB for qemu-devel@nongnu.org; Fri, 27 May 2016 02:09:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b6AxJ-0003ua-Lk for qemu-devel@nongnu.org; Fri, 27 May 2016 02:09:10 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47537) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b6AxJ-0003u7-GH for qemu-devel@nongnu.org; Fri, 27 May 2016 02:09:09 -0400 From: Fam Zheng Date: Fri, 27 May 2016 14:08:24 +0800 Message-Id: <1464329312-12738-7-git-send-email-famz@redhat.com> In-Reply-To: <1464329312-12738-1-git-send-email-famz@redhat.com> References: <1464329312-12738-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] [PULL 06/14] docker: Add common.rc List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: peter.maydell@linaro.org Cc: qemu-devel@nongnu.org "requires" checks the "FEATURE" environment for specified prerequisits, and skip the execution of test if not found. "build_qemu" is the central routine to compile QEMU for tests to call. Reviewed-by: Alex Benn=C3=A9e Signed-off-by: Fam Zheng Message-id: 1463986466-764-7-git-send-email-famz@redhat.com --- tests/docker/common.rc | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 tests/docker/common.rc diff --git a/tests/docker/common.rc b/tests/docker/common.rc new file mode 100755 index 0000000..74b89d6 --- /dev/null +++ b/tests/docker/common.rc @@ -0,0 +1,31 @@ +#!/bin/sh +# +# Common routines for docker test scripts. +# +# 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. + +requires() +{ + for c in $@; do + if ! echo "$FEATURES" | grep -wq -e "$c"; then + echo "Prerequisite '$c' not present, skip" + exit 0 + fi + done +} + +build_qemu() +{ + $QEMU_SRC/configure \ + --target-list=3D"${TARGET_LIST}" \ + --prefix=3D"$PWD/install" \ + "$@" + make $MAKEFLAGS +} --=20 2.8.2