# HG changeset patch # User Thomas Weber # Date 1240467906 -7200 # Node ID e716cafee800a2d80d19f73c0da689664643f360 # Parent 7120fbbecf9740b4fe72f53ea94b2e6188172c80 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'); +