summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1995-05-18 18:20:12 +0000
committerJim Meyering <jim@meyering.net>1995-05-18 18:20:12 +0000
commita547f02ddf9ca34432941a0cdbf20a232a9d5f6f (patch)
treef94f2f231eb053bd161b2fec5a31aef09a4d8c9f /tests
parentc9c8ba714c924fafe4c36bfc40b9cb62b95b37d6 (diff)
downloadcoreutils-a547f02ddf9ca34432941a0cdbf20a232a9d5f6f.tar.xz
Test [:lower:] to [:upper:] and vice versa.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/tr/test.data.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/tr/test.data.pl b/tests/tr/test.data.pl
index 39da468f4..1a9d0fd94 100755
--- a/tests/tr/test.data.pl
+++ b/tests/tr/test.data.pl
@@ -59,3 +59,5 @@
("A", "abc", '', 'a-a','z', "zbc", 0);
#
("B", "", '', 'a',"''", "", 1);
+("C", "abcxyzABCXYZ", '', '[:lower:]', '[:upper:]', "ABCXYZABCXYZ", 0);
+("D", "abcxyzABCXYZ", '', '[:upper:]', '[:lower:]', "abcxyzabcxyz", 0);