Mercurial > hg > octave-nkf
diff test/test_system.m @ 5707:6286c96121c2
[project @ 2006-03-22 05:07:28 by jwe]
author | jwe |
---|---|
date | Wed, 22 Mar 2006 05:07:29 +0000 |
parents | 52323f13c86b |
children | 02c7e288f581 |
line wrap: on
line diff
--- a/test/test_system.m +++ b/test/test_system.m @@ -334,11 +334,11 @@ %% test/octave.test/system/fnmatch-1.m %!test %! string_fill_char = setstr (0); -%! assert((fnmatch ("a*a", ["aba"; "xxxba"; "aa"]) == [1; 0; 1] -%! && fnmatch (["a*a"; "b*b"], "bob") -%! && fnmatch ("x[0-5]*", ["x1"; "x6"]) == [1; 0] -%! && fnmatch ("x[0-5]*", ["x1"; "x6"; "x001"]) == [1; 0; 1] -%! && fnmatch ("x???y", ["xabcy"; "xy"]) == [1; 0])); +%! assert((fnmatch ("a*a", {"aba"; "xxxba"; "aa"}) == [1; 0; 1] +%! && fnmatch ({"a*a"; "b*b"}, "bob") +%! && fnmatch ("x[0-5]*", {"x1"; "x6"}) == [1; 0] +%! && fnmatch ("x[0-5]*", {"x1"; "x6"; "x001"}) == [1; 0; 1] +%! && fnmatch ("x???y", {"xabcy"; "xy"}) == [1; 0])); %% test/octave.test/system/fnmatch-2.m %!error <... fnmatch:.*> fnmatch ();