changeset 29507:526a5ba817ca

Don't mark BISTs specific for Mac and Windows as fixed. * libinterp/corefcn/mappers.cc: Remove "*" from BISTs that are run specifically only on Mac and Windows and are "allowed" to fail on those platforms.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 08 Apr 2021 18:14:02 +0200
parents 71b074e75198
children 45dc789ad983
files libinterp/corefcn/mappers.cc
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/mappers.cc	Thu Apr 08 00:16:13 2021 -0400
+++ b/libinterp/corefcn/mappers.cc	Thu Apr 08 18:14:02 2021 +0200
@@ -133,7 +133,7 @@
 %! v = [0, pi, pi/2, pi/2];
 %! assert (real (acos (x)), v);
 
-%!test <*52627>
+%!test <52627>
 %! ## Same test code as above, but intended only for test statistics on Mac and
 %! ## Windows.  Their trig/hyperbolic functions have huge tolerances.
 %! if (! ismac () && ! ispc ()), return; endif
@@ -164,7 +164,7 @@
 %! v = [0, pi/2*i, pi*i, pi/2*i];
 %! assert (acosh (x), v, sqrt (eps));
 
-%!test <*52627>
+%!test <52627>
 %! ## Same test code as above, but intended only for test statistics on Mac.
 %! ## Mac trig/hyperbolic functions have huge tolerances.
 %! if (! ismac ()), return; endif
@@ -187,7 +187,7 @@
 %! v = single ([0, pi/2*i, pi*i, pi/2*i]);
 %! assert (acosh (x), v, sqrt (eps ("single")));
 
-%!test <*52627>
+%!test <52627>
 %! ## Same test code as above, but intended only for test statistics on Mac.
 %! ## Mac trig/hyperbolic functions have huge tolerances.
 %! if (! ismac ()), return; endif
@@ -208,7 +208,7 @@
 %! v = [0, pi, pi/2, -pi/2];
 %! assert (imag (acosh (x)), v);
 
-%!test <*52627>
+%!test <52627>
 %! ## Same test code as above, but intended only for test statistics on Mac and
 %! ## Windows.  Their trig/hyperbolic functions have huge tolerances.
 %! if (! ismac () && ! ispc ()), return; endif
@@ -336,7 +336,7 @@
 %! v = [pi/2, -pi/2, 0, -0];
 %! assert (real (asin (x)), v);
 
-%!test <*52627>
+%!test <52627>
 %! ## Same test code as above, but intended only for test statistics on Mac and
 %! ## Windows. Their trig/hyperbolic functions have huge tolerances.
 %! if (! ismac () && ! ispc ()), return; endif
@@ -379,7 +379,7 @@
 %! v = [0, 0, pi/2, -pi/2];
 %! assert (imag (asinh (x)), v);
 
-%!test <*52627>
+%!test <52627>
 %! ## Same test code as above, but intended only for test statistics on Mac and
 %! ## Windows.  Their trig/hyperbolic functions have huge tolerances.
 %! if (! ismac () && ! ispc ()), return; endif