summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2025-09-24 16:04:07 +0400
committerMarc-André Lureau <marcandre.lureau@redhat.com>2025-09-30 19:33:25 +0400
commit59352b789a48cd8f2f946a2e86c50230b66099b3 (patch)
tree0514bbc84417c3e19c584ad5c1a9b79ed4da789f /tests
parent1e752fcc979c1a2ced73967956ddbac178540cf6 (diff)
downloadfocaccia-qemu-59352b789a48cd8f2f946a2e86c50230b66099b3.tar.gz
focaccia-qemu-59352b789a48cd8f2f946a2e86c50230b66099b3.zip
tests/docker/common: print meson log on configure failure
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-ID: <20250924120426.2158655-11-marcandre.lureau@redhat.com>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/docker/common.rc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/docker/common.rc b/tests/docker/common.rc
index 2ed2365a61..d202c0c666 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()