tests/docker/common: print errors to stderr
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Message-ID: <20250924120426.2158655-9-marcandre.lureau@redhat.com>
This commit is contained in:
parent
0d4fb8f746
commit
cb29fda6c9
1 changed files with 2 additions and 2 deletions
|
|
@ -50,7 +50,7 @@ configure_qemu()
|
|||
echo "Configure options:"
|
||||
echo $config_opts
|
||||
$QEMU_SRC/configure $config_opts || \
|
||||
{ cat config.log && test_fail "Failed to run 'configure'"; }
|
||||
{ cat config.log >&2 && test_fail "Failed to run 'configure'"; }
|
||||
}
|
||||
|
||||
build_qemu()
|
||||
|
|
@ -73,7 +73,7 @@ check_qemu()
|
|||
|
||||
test_fail()
|
||||
{
|
||||
echo "$@"
|
||||
echo "$@" >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue