# HG changeset patch # User Rik # Date 1585511973 25200 # Node ID 493d46a02edc146a52679312cfeb610dd3e470bd # Parent c805c1b541fa486fd4bb1c101ea1b6028dd54d21 test: Add %!xtest for bug #50743 so it is not forgotten (bug #50743). * file-io.cc (Ftextscan): Add %!xtest for bug #50743 which checks '%u64' format. diff -r c805c1b541fa -r 493d46a02edc libinterp/corefcn/file-io.cc --- a/libinterp/corefcn/file-io.cc Sun Mar 29 12:53:19 2020 -0700 +++ b/libinterp/corefcn/file-io.cc Sun Mar 29 12:59:33 2020 -0700 @@ -2321,6 +2321,10 @@ %! C = textscan (str, '%s', 'Delimiter', '\t', 'MultipleDelimsAsOne', false); %! assert (C{1}, {'a'; ''; 'b'; 'c'}); +%!xtest <50743> +%! C = textscan ('5973459727478852968', '%u64'); +%! assert (C{1}, uint64 (5973459727478852968)); + */ // These tests have end-comment sequences, so can't just be in a comment