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:
parent
eb427ca1a3
commit
e8a3585d78
|
|
@ -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
|
ostree (2016.6-3) unstable; urgency=medium
|
||||||
|
|
||||||
* Ignore build-time test failures on mipsel. "ostree pull"
|
* Ignore build-time test failures on mipsel. "ostree pull"
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ fi
|
||||||
|
|
||||||
if [ "$failed" -gt 0 ]; then
|
if [ "$failed" -gt 0 ]; then
|
||||||
echo "Failed $failed out of $try_tests test runs"
|
echo "Failed $failed out of $try_tests test runs"
|
||||||
if [ -n "$ignore" ]; then
|
if [ -z "$ignore" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
echo "Ignoring test failure for this architecture"
|
echo "Ignoring test failure for this architecture"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue