From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36075) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bRlBN-00027g-G8 for qemu-devel@nongnu.org; Mon, 25 Jul 2016 15:04:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bRlBJ-0000Ig-5m for qemu-devel@nongnu.org; Mon, 25 Jul 2016 15:04:52 -0400 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:15735 helo=mx0a-001b2d01.pphosted.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bRlBJ-0000IY-11 for qemu-devel@nongnu.org; Mon, 25 Jul 2016 15:04:49 -0400 Received: from pps.filterd (m0098420.ppops.net [127.0.0.1]) by mx0b-001b2d01.pphosted.com (8.16.0.11/8.16.0.11) with SMTP id u6PJ4lCM077959 for ; Mon, 25 Jul 2016 15:04:48 -0400 Received: from e19.ny.us.ibm.com (e19.ny.us.ibm.com [129.33.205.209]) by mx0b-001b2d01.pphosted.com with ESMTP id 24c4rq3c9s-1 (version=TLSv1.2 cipher=AES256-SHA bits=256 verify=NOT) for ; Mon, 25 Jul 2016 15:04:47 -0400 Received: from localhost by e19.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 25 Jul 2016 15:04:46 -0400 From: Michael Roth Date: Mon, 25 Jul 2016 14:04:25 -0500 In-Reply-To: <1469473467-16316-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1469473467-16316-1-git-send-email-mdroth@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Message-Id: <1469473467-16316-2-git-send-email-mdroth@linux.vnet.ibm.com> Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL for-2.7 1/3] build-sys: link tests/data List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= From: Marc-Andr=C3=A9 Lureau Link a common tests data directory to the build directory. Signed-off-by: Marc-Andr=C3=A9 Lureau Signed-off-by: Michael Roth --- configure | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure b/configure index 6ffa4a8..61279b0 100755 --- a/configure +++ b/configure @@ -5995,6 +5995,11 @@ for rom in seabios vgabios ; do echo "LD=3D$ld" >> $config_mak done =20 +# set up tests data directory +if [ ! -e tests/data ]; then + symlink "$source_path/tests/data" tests/data +fi + # set up qemu-iotests in this build directory iotests_common_env=3D"tests/qemu-iotests/common.env" iotests_check=3D"tests/qemu-iotests/check" --=20 1.9.1