diff options
author | Jim Meyering <jim@meyering.net> | 2005-01-12 15:00:51 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-01-12 15:00:51 +0000 |
commit | dc339f4f80596cb0b29754400b6c026e1b95e5d9 (patch) | |
tree | 95463a84e40e9aa552a86a83c3ec11078ccab573 /tests/tr | |
parent | 8cebee0f7ec9b8283d6ec9876c80a7d8bf94f62d (diff) | |
download | coreutils-dc339f4f80596cb0b29754400b6c026e1b95e5d9.tar.xz |
(repeat-bigC): Change test name from
`repeat-Compl', to avoid 8.3 conflict with `repeat-compl'.
Diffstat (limited to 'tests/tr')
-rwxr-xr-x | tests/tr/Test.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tr/Test.pm b/tests/tr/Test.pm index 0cd96a9c2..142155097 100755 --- a/tests/tr/Test.pm +++ b/tests/tr/Test.pm @@ -110,7 +110,7 @@ my @tv = ( ['repeat-0', q|abc '[b*0]'|, 'abcd', 'bbbd', 0], ['repeat-000', q|abc '[b*00000000000000000000]'|, 'abcd', 'bbbd', 0], ['repeat-compl', '-c ' . q|'[a*65536]\n' '[b*]'|, 'abcd', 'abbb', 0], -['repeat-Compl', '-C ' . q|'[a*65536]\n' '[b*]'|, 'abcd', 'abbb', 0], +['repeat-bigC', '-C ' . q|'[a*65536]\n' '[b*]'|, 'abcd', 'abbb', 0], # From Glenn Fowler. ['fowler-1', q|ah -H|, 'aha', '-H-', 0], |