# HG changeset patch # User Markus Mützel # Date 1649437919 -7200 # Node ID b86b86ad4b239c50197e46d3777a1606541bcbdf # Parent a4ed2fed7dfac181cd93a5d49c3f8903f62e3b82 Remove asterisk from BISTs since they are failing in some circumstances (bug #38466). * libinterp/corefcn/bsxfun.cc: Remove asterisk from BISTs since they are failing in some circumstances. diff -r a4ed2fed7dfa -r b86b86ad4b23 libinterp/corefcn/bsxfun.cc --- a/libinterp/corefcn/bsxfun.cc Fri Apr 08 17:50:00 2022 +0200 +++ b/libinterp/corefcn/bsxfun.cc Fri Apr 08 19:11:59 2022 +0200 @@ -816,25 +816,25 @@ %! assert (r(:,:,1), repmat (single ([0, 0, 1+i, 1+i]), [4, 1])); ## automatic broadcasting with inplace times operator -%!test <*38466> +%!test <38466> %! a = ones (2, 2, 2); %! b = 2 * ones (2, 1); %! a .*= b; %! assert (a, 2 * ones (2, 2, 2)); -%!test <*38466> +%!test <38466> %! a = ones (2, 2, 2); %! b = 2 * ones (1, 2); %! a .*= b; %! assert (a, 2 * ones (2, 2, 2)); -%!test <*38466> +%!test <38466> %! a = ones (2, 2, 2); %! b = 2 * ones (2, 2); %! a .*= b; %! assert (a, 2 * ones (2, 2, 2)); -%!test <*38466> +%!test %! a = ones (2, 2, 2); %! b = 2 * ones (1, 1, 2); %! a .*= b;