# 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 -r 7120fbbecf97 -r e716cafee800 test/test_string.m --- a/test/test_string.m Wed Apr 22 17:26:31 2009 -0400 +++ b/test/test_string.m Thu Apr 23 08:25:06 2009 +0200 @@ -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'); +