We FAIL the test whenever there is an output on stderr. QEMU or its libraries can warn and the test could still work, so ignore any line that has a warning keyword. Signed-off-by: Radim Krčmář <rkrcmar@xxxxxxxxxx> --- v4: new scripts/arch-run.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/arch-run.bash b/scripts/arch-run.bash index 8ef4ff5634a0..8e75c6ed6e17 100644 --- a/scripts/arch-run.bash +++ b/scripts/arch-run.bash @@ -55,7 +55,7 @@ run_qemu () # Even when ret==1 (unittest success) if we also got stderr # logs, then we assume a QEMU failure. Otherwise we translate # status of 1 to 0 (SUCCESS) - if [ -z "$errors" ]; then + if [ -z "$(echo "$errors" | grep -vi warning)" ]; then ret=0 fi fi -- 2.8.2 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html