diff options
author | Jim Meyering <jim@meyering.net> | 1995-05-18 18:20:12 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-05-18 18:20:12 +0000 |
commit | a547f02ddf9ca34432941a0cdbf20a232a9d5f6f (patch) | |
tree | f94f2f231eb053bd161b2fec5a31aef09a4d8c9f /tests/tr | |
parent | c9c8ba714c924fafe4c36bfc40b9cb62b95b37d6 (diff) | |
download | coreutils-a547f02ddf9ca34432941a0cdbf20a232a9d5f6f.tar.xz |
Test [:lower:] to [:upper:] and vice versa.
Diffstat (limited to 'tests/tr')
-rwxr-xr-x | tests/tr/test.data.pl | 2 |
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); |