summaryrefslogtreecommitdiff
path: root/tests/tr
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-01-12 15:27:28 +0000
committerJim Meyering <jim@meyering.net>2005-01-12 15:27:28 +0000
commit10d9154380d8e2194e7a1427be3428752fca510b (patch)
tree43ee186bc520ab71df47de87dc7ce672bc9a53dc /tests/tr
parentfc539da2b02c1ec5354326dc1b44734b392240a7 (diff)
downloadcoreutils-10d9154380d8e2194e7a1427be3428752fca510b.tar.xz
(repeat-000): Rename to `repeat-zeros' for the same reason.
Diffstat (limited to 'tests/tr')
-rwxr-xr-xtests/tr/Test.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tr/Test.pm b/tests/tr/Test.pm
index 142155097..b1fb423ff 100755
--- a/tests/tr/Test.pm
+++ b/tests/tr/Test.pm
@@ -108,9 +108,9 @@ my @tv = (
# Weird repeat counts.
['repeat-bs-9', q|abc '[b*\9]'|, 'abcd', '[b*d', 0],
['repeat-0', q|abc '[b*0]'|, 'abcd', 'bbbd', 0],
-['repeat-000', q|abc '[b*00000000000000000000]'|, 'abcd', 'bbbd', 0],
+['repeat-zeros', q|abc '[b*00000000000000000000]'|, 'abcd', 'bbbd', 0],
['repeat-compl', '-c ' . q|'[a*65536]\n' '[b*]'|, 'abcd', 'abbb', 0],
-['repeat-bigC', '-C ' . q|'[a*65536]\n' '[b*]'|, 'abcd', 'abbb', 0],
+['repeat-xC', '-C ' . q|'[a*65536]\n' '[b*]'|, 'abcd', 'abbb', 0],
# From Glenn Fowler.
['fowler-1', q|ah -H|, 'aha', '-H-', 0],