From e8a3585d7805e4c29d9c4ae4ab82e557ace569b6 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Wed, 6 Jul 2016 15:23:38 +0100 Subject: [PATCH] Switch sense of check in debian/test.sh so we really ignore test failures on mipsel, and not on !mipsel. --- debian/changelog | 7 +++++++ debian/test.sh | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 471fe309..0bfc15ed 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +ostree (2016.6-4) unstable; urgency=medium + + * Switch sense of check in debian/test.sh so we really ignore test + failures on mipsel, and not on !mipsel. + + -- Simon McVittie Wed, 06 Jul 2016 15:23:31 +0100 + ostree (2016.6-3) unstable; urgency=medium * Ignore build-time test failures on mipsel. "ostree pull" diff --git a/debian/test.sh b/debian/test.sh index e4035116..dc8eed28 100755 --- a/debian/test.sh +++ b/debian/test.sh @@ -36,7 +36,7 @@ fi if [ "$failed" -gt 0 ]; then echo "Failed $failed out of $try_tests test runs" - if [ -n "$ignore" ]; then + if [ -z "$ignore" ]; then exit 1 else echo "Ignoring test failure for this architecture"