diff scripts/general/interp2.m @ 23573:1b4f4ec53b4a

use new script to tag fixed bugs in tests
author John W. Eaton <jwe@octave.org>
date Fri, 09 Jun 2017 17:44:57 -0400
parents 0703d31e1ec0
children 194eb4bd202b
line wrap: on
line diff
--- a/scripts/general/interp2.m	Fri Jun 09 17:40:34 2017 -0400
+++ b/scripts/general/interp2.m	Fri Jun 09 17:44:57 2017 -0400
@@ -519,11 +519,11 @@
 %! assert (interp2 (X, 2.5, 2.5, "nearest"), 3);
 
 ## re-order monotonically decreasing
-%!assert <41838> (interp2 ([1 2 3], [3 2 1], magic (3), 2.5, 3), 3.5)
-%!assert <41838> (interp2 ([3 2 1], [1 2 3], magic (3), 1.5, 1), 3.5)
+%!assert <*41838> (interp2 ([1 2 3], [3 2 1], magic (3), 2.5, 3), 3.5)
+%!assert <*41838> (interp2 ([3 2 1], [1 2 3], magic (3), 1.5, 1), 3.5)
 
 ## Linear interpretation with vector XI doesn't lead to matrix output
-%!assert <49506> (interp2 ([2 3], [2 3 4], [1 2; 3 4; 5 6], [2 3], 3, "linear"), [3 4])
+%!assert <*49506> (interp2 ([2 3], [2 3 4], [1 2; 3 4; 5 6], [2 3], 3, "linear"), [3 4])
 
 %!shared z, zout, tol
 %! z = [1 3 5; 3 5 7; 5 7 9];