changeset 31273:5f536c6a9bd6

Back out changeset b86b86ad4b23 (bug #38466).
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 07 Oct 2022 19:42:57 +0200
parents 3e4b9ecc031c
children 773a361bc476
files libinterp/corefcn/bsxfun.cc
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/bsxfun.cc	Fri Oct 07 13:39:08 2022 -0400
+++ b/libinterp/corefcn/bsxfun.cc	Fri Oct 07 19:42:57 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
+%!test <*38466>
 %! a = ones (2, 2, 2);
 %! b = 2 * ones (1, 1, 2);
 %! a .*= b;