Control: tags -1 + patch ftbfs Control: severity -1 serious Hi Maintainer
As can be seen on the reproducible builders [1], this issue also causes a FTBFS on i386. The attached patch allows a tolerance, where previously there was none, so ttest can pass on i386. Regards Graham [1] https://tests.reproducible-builds.org/debian/history/i386/octave-statistics.html
Description: Allow a tolerance so ttest can pass on i386 Bug-Debian: https://bugs.debian.org/906820 Author: Graham Inggs <[email protected]> Last-Update: 2018-08-21 --- a/inst/ttest.m +++ b/inst/ttest.m @@ -154,7 +154,7 @@ %! [h, pval, ci0] = ttest (x, 0); %! assert (h, 1) %! assert (pval, 0) -%! assert (ci0, ci) +%! assert (ci0, ci, 1E-5) %! [h, pval, ci] = ttest (x, 10, "tail", "right", "dim", 2, "alpha", 0.05); %! assert (h, 0) %! assert (pval, 0.5, 10*eps)

