Switch sense of check in debian/test.sh so we really ignore test failures on mipsel, and not on !mipsel.

This commit is contained in:
Simon McVittie 2016-07-06 15:23:38 +01:00
parent eb427ca1a3
commit e8a3585d78
2 changed files with 8 additions and 1 deletions

7
debian/changelog vendored
View File

@ -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 <smcv@debian.org> Wed, 06 Jul 2016 15:23:31 +0100
ostree (2016.6-3) unstable; urgency=medium
* Ignore build-time test failures on mipsel. "ostree pull"

2
debian/test.sh vendored
View File

@ -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"