diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rwxr-xr-x | tests/misc/base64 | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,7 @@ 2006-12-30 Jim Meyering <jim@meyering.net> + * tests/misc/base64: Factor a long, repetitive string. + * src/c99-to-c89.diff: Adjust remove.c offsets. Clean up after the change of 2006-12-28. diff --git a/tests/misc/base64 b/tests/misc/base64 index 02591da86..60332a044 100755 --- a/tests/misc/base64 +++ b/tests/misc/base64 @@ -37,8 +37,7 @@ use strict; # Turn off localisation of executable's ouput. @ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x 3; -my $a39 = "YWFhY\nWFhYW\nFhYWF\nhYWFh\nYWFhY\nWFhYW\nFhYWF\n" - . "hYWFh\nYWFhY\nWFhYW\nFh"; +(my $a39 = 'YWFh' x 13) =~ s/(.{5})/$1\n/g; my @Tests = ( |