From 8699737f6dfd3eb60b89b72a122c110d8e7d9248 Mon Sep 17 00:00:00 2001 From: Daniel P. Berrange Date: Oct 12 2017 08:37:20 +0000 Subject: Fix inverted check for ignoring test suite failures An inverted conditional meant that test suite failures were previously being ignored on all architectures by default, instead of only on the blacklisted arches (currently none) Signed-off-by: Daniel P. Berrange --- diff --git a/qemu.spec b/qemu.spec index fc98df5..d7bd739 100644 --- a/qemu.spec +++ b/qemu.spec @@ -1424,9 +1424,9 @@ b="./x86_64-softmmu/qemu-system-x86_64" if [ -x "$b" ]; then "$b" -help; fi %ifarch %{archs_ignore_test_failures} -make check V=1 -%else make check V=1 || : +%else +make check V=1 %endif %if 0%{?hostqemu:1}