From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45932) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1emN9B-0003Bz-Ll for qemu-devel@nongnu.org; Thu, 15 Feb 2018 12:16:38 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1emN97-0006p2-Gs for qemu-devel@nongnu.org; Thu, 15 Feb 2018 12:16:37 -0500 Received: from mx3-rdu2.redhat.com ([66.187.233.73]:34618 helo=mx1.redhat.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1emN97-0006ov-CG for qemu-devel@nongnu.org; Thu, 15 Feb 2018 12:16:33 -0500 From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= Date: Thu, 15 Feb 2018 17:16:11 +0000 Message-Id: <20180215171611.11962-1-berrange@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH] tests: dump config.log when configure fails in docker job 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?= , Fam Zheng , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , Eric Blake , =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= When configure fails inside a docker job it is not easy to get access to the config.log file. It is nicer for developers if we just splatter the contents of config.log to stdout upon failure Suggested-by: Eric Blake Signed-off-by: Daniel P. Berrang=C3=A9 --- tests/docker/common.rc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/docker/common.rc b/tests/docker/common.rc index 7951555e3f..ecbea13443 100755 --- a/tests/docker/common.rc +++ b/tests/docker/common.rc @@ -30,7 +30,8 @@ build_qemu() $@" echo "Configure options:" echo $config_opts - $QEMU_SRC/configure $config_opts && make $MAKEFLAGS + $QEMU_SRC/configure $config_opts || cat config.log + make $MAKEFLAGS } =20 test_fail() --=20 2.14.3