# HG changeset patch # User Markus Mützel # Date 1683020336 -7200 # Node ID 31a68f3ced0765d8ad5fad375ea8ab815c29e4e0 # Parent 13362cd35b72c61d4785d966513184c46eeb6464# Parent bc46d7c2768f29eed1ba048634520d4f036cf5c4 maint: Merge stable to default. diff -r 13362cd35b72 -r 31a68f3ced07 .github/workflows/make.yaml --- a/.github/workflows/make.yaml Sun Apr 30 15:44:32 2023 -0700 +++ b/.github/workflows/make.yaml Tue May 02 11:38:56 2023 +0200 @@ -342,8 +342,8 @@ - name: analyze test suite results # Make sure the test summary lists 0 "FAIL"s and no "REGRESSION" run: | - [ -n "$(grep -e "FAIL\s*0" ./test-suite.log)" ] || echo "::warning::At least one test failed" - [ -z "$(grep -e "REGRESSION" ./test-suite.log)" ] || echo "::warning::At least one regression in test suite" + [ -n "$(grep -e "FAIL\s*0" ./test-suite.log)" ] || exit 1 + [ -z "$(grep -e "REGRESSION" ./test-suite.log)" ] || exit 1 echo Finished analyzing test suite results. - name: test history file creation diff -r 13362cd35b72 -r 31a68f3ced07 scripts/specfun/betaincinv.m --- a/scripts/specfun/betaincinv.m Sun Apr 30 15:44:32 2023 -0700 +++ b/scripts/specfun/betaincinv.m Tue May 02 11:38:56 2023 +0200 @@ -262,7 +262,7 @@ %! a = [0.1:0.1:1]; %! [x,a,b] = ndgrid (x,a,a); %! xx = betaincinv (betainc (x, a, b, "upper"), a, b, "upper"); -%! assert (xx, x, 5e-15); +%! assert (xx, x, 24*eps); ## Test the conservation of the input class %!assert (class (betaincinv (0.5, 1, 1)), "double")