changeset 24310:4dce9d03b2ba

Remove regression mark for second BIST test for textscan bug #52479. * file-io.cc: Remove regression mark for textscan BIST test where delimiter is a whitespace, but presented as a cellstr array rather than a string.
author Rik <rik@octave.org>
date Sun, 26 Nov 2017 10:22:39 -0800
parents 1262d7c4712e
children 0643533930e7
files libinterp/corefcn/file-io.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/file-io.cc	Sun Nov 26 09:01:35 2017 -0800
+++ b/libinterp/corefcn/file-io.cc	Sun Nov 26 10:22:39 2017 -0800
@@ -2216,7 +2216,7 @@
 %! ret = textscan (str, "%s", "delimiter", "\t");
 %! assert (ret, { {''; ''; 'a'; 'b'; 'c'} }) ;
 
-%!test <*52479>
+%!test <52479>
 %! str = "\t\ta\tb\tc\n";
 %! ret = textscan (str, "%s", "delimiter", {"\t"});
 %! assert (ret, { {''; ''; 'a'; 'b'; 'c'} }) ;