From: Kevin Wolf Date: Fri, 8 Nov 2019 08:03:59 +0000 (+0100) Subject: iotests: Fix "no qualified output" error path X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d44abcc0f71a08e5777f8d4fe92902dc2eaaa468;p=qemu.git iotests: Fix "no qualified output" error path The variable for error messages to be displayed is $results, not $reason. Fix 'check' to print the "no qualified output" error message again instead of having a failure without any message telling the user why it failed. Signed-off-by: Kevin Wolf Reviewed-by: Max Reitz --- diff --git a/tests/qemu-iotests/check b/tests/qemu-iotests/check index 71fe38834e..90970b0549 100755 --- a/tests/qemu-iotests/check +++ b/tests/qemu-iotests/check @@ -887,7 +887,7 @@ do if [ ! -f "$reference" ] then status="fail" - reason="no qualified output" + results="no qualified output" err=true else if diff -w "$reference" $tmp.out >/dev/null 2>&1