diff options
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules index 0d8f0825b..c7b05413c 100755 --- a/debian/rules +++ b/debian/rules @@ -317,9 +317,12 @@ endif TEST_LOG = debian/rustc-tests.log # This is advertised as "5 tests failed" in README.Debian because our counting # method is imprecise and in practise we count some failures twice. -FAILURES_ALLOWED = 8 +# temporarily bumped from 8 to 10 to account for test output changes depending +# on build path length, bump down again once 1.78 is imported +FAILURES_ALLOWED = 10 ifneq (,$(filter $(DEB_BUILD_ARCH), armhf)) - FAILURES_ALLOWED = 12 +# temporarily bumped from 12 to 15, see above + FAILURES_ALLOWED = 15 endif ifneq (,$(filter $(DEB_BUILD_ARCH), armel mips mips64el)) FAILURES_ALLOWED = 24 |