diff options
-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); |