From: Marc-André Lureau Date: Wed, 24 Sep 2025 12:04:07 +0000 (+0400) Subject: tests/docker/common: print meson log on configure failure X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=59352b789a48cd8f2f946a2e86c50230b66099b3;p=thirdparty%2Fqemu.git tests/docker/common: print meson log on configure failure Signed-off-by: Marc-André Lureau Reviewed-by: Daniel P. Berrangé Message-ID: <20250924120426.2158655-11-marcandre.lureau@redhat.com> --- diff --git a/tests/docker/common.rc b/tests/docker/common.rc index 2ed2365a615..d202c0c6665 100755 --- a/tests/docker/common.rc +++ b/tests/docker/common.rc @@ -50,7 +50,7 @@ configure_qemu() echo "Configure options:" echo $config_opts $QEMU_SRC/configure $config_opts || \ - { cat config.log >&2 && test_fail "Failed to run 'configure'"; } + { cat config.log >&2 ; cat meson-logs/meson-log.txt >&2 ; test_fail "Failed to run 'configure'"; } } build_qemu()