From fe31017f79e591463599de30b11b24835f10f18b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marc-Andr=C3=A9=20Lureau?= Date: Wed, 15 Jun 2016 13:06:00 +0200 Subject: [PATCH] build-sys: link tests/data MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Link a common tests data directory to the build directory. Signed-off-by: Marc-André Lureau Signed-off-by: Michael Roth --- configure | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure b/configure index 6ffa4a83cc..61279b05f3 100755 --- a/configure +++ b/configure @@ -5995,6 +5995,11 @@ for rom in seabios vgabios ; do echo "LD=$ld" >> $config_mak done +# 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="tests/qemu-iotests/common.env" iotests_check="tests/qemu-iotests/check" -- 2.11.4.GIT