# HG changeset patch # User Thomas Weber # Date 1240467906 -7200 # Node ID c2d828ea94a3cf8683f2c5d722cd7674040e1dfb # Parent 69e6bbfef8c2ebbb125fe1e21832cb302bb14075 Add tests for concatenation of strings with all-zero matrices diff --git a/test/test_string.m b/test/test_string.m --- a/test/test_string.m +++ b/test/test_string.m @@ -448,3 +448,7 @@ %% test/octave.test/string/isxdigit-3.m %!error isxdigit (); +%% test concatenation with all zero matrices +%!assert([ '' 65*ones(1,10) ], 'AAAAAAAAAA'); +%!assert([ 65*ones(1,10) '' ], 'AAAAAAAAAA'); +