diff options
author | Jim Meyering <jim@meyering.net> | 1995-10-19 22:40:10 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-10-19 22:40:10 +0000 |
commit | 0598102472fa85d9aa114fc06e7672d220653a18 (patch) | |
tree | bdb1568eeb8cdcc7a181440be09d2d78ad4dee2a /tests/tr | |
parent | 4aba8a55f2d1df885fa2ec09aee95695b37a9801 (diff) | |
download | coreutils-0598102472fa85d9aa114fc06e7672d220653a18.tar.xz |
.
Diffstat (limited to 'tests/tr')
-rwxr-xr-x | tests/tr/test.data.pl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/tr/test.data.pl b/tests/tr/test.data.pl index 1a9d0fd94..b5acbb367 100755 --- a/tests/tr/test.data.pl +++ b/tests/tr/test.data.pl @@ -49,7 +49,7 @@ ("u", "aabbaa", '-ds', 'b','a', "a", 0); ("v", "ZZ0123456789acbdefABCDEFZZ", \ '-ds', '[:xdigit:]','Z', "Z", 0); -# Try some data with 8th bit set in case something is mistakenly sign-extended. +# Try some data with 8th bit set in case something is mistakenly sign-extended. ("w", "\300\301\377\345\345\350\345", \ '-ds', '\350','\345', "\300\301\377\345", 0); ("x", "abcdefghijklmnop", '-s', 'abcdefghijklmn','[:*016]', ":op", 0); @@ -61,3 +61,9 @@ ("B", "", '', 'a',"''", "", 1); ("C", "abcxyzABCXYZ", '', '[:lower:]', '[:upper:]', "ABCXYZABCXYZ", 0); ("D", "abcxyzABCXYZ", '', '[:upper:]', '[:lower:]', "abcxyzabcxyz", 0); + +("E", "a=c", '', 'a[=*2][=c=]', 'xyyz', "xyz", 0); +("F", ":1239", '', '[:*3][:digit:]', 'a-m', "cefgm", 0); +("G", "abc", '', 'a[b*512]c', '1[x*]2', "1x2", 0); +("H", "abc", '', 'a[b*513]c', '1[x*]2', "1x2", 0); +("I", "abc-z", '', 'a\-z', 'A-Z', "AbcBC", 0); |