changeset 30914:b86b86ad4b23

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.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 08 Apr 2022 19:11:59 +0200
parents a4ed2fed7dfa
children a25af8644da8
files libinterp/corefcn/bsxfun.cc
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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;