From: Jim Meyering Date: Thu, 18 May 1995 18:20:12 +0000 (+0000) Subject: Test [:lower:] to [:upper:] and vice versa. X-Git-Tag: textutils-1_12_1~174 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a547f02ddf9ca34432941a0cdbf20a232a9d5f6f;p=thirdparty%2Fcoreutils.git Test [:lower:] to [:upper:] and vice versa. --- diff --git a/tests/tr/test.data.pl b/tests/tr/test.data.pl index 39da468f42..1a9d0fd940 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);