diff options
author | Jim Meyering <jim@meyering.net> | 1994-11-07 12:47:50 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1994-11-07 12:47:50 +0000 |
commit | cb4c5aaf0a1884bcae21c7d31b70864e64bb55fa (patch) | |
tree | 9dc6a5b7b0ee4449a7513c29f79f552ff01b93fc /tests/join/failures | |
parent | 87615079293ffe40e844d1d6138572ac33967d3c (diff) | |
download | coreutils-cb4c5aaf0a1884bcae21c7d31b70864e64bb55fa.tar.xz |
Initial revision
Diffstat (limited to 'tests/join/failures')
-rw-r--r-- | tests/join/failures | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/join/failures b/tests/join/failures new file mode 100644 index 000000000..defc474ce --- /dev/null +++ b/tests/join/failures @@ -0,0 +1,19 @@ +# ./tr a '[c*]b' +# ./tr -s abc zy +# ./tr abc zy +tr a '[:not-a-class:]' < /dev/null +tr a '[:digit:]' < /dev/null +tr '[c*]' k < /dev/null +tr a '[=c=]' < /dev/null +tr a '[c*][c*]' < /dev/null +tr -ds abd '[c*]' < /dev/null +tr -c '[:lower:]' '[:upper:]' < /dev/null +tr '[:lower:]' '[:lower:]' < /dev/null +tr '0-9[:lower:]' '[:upper:]' < /dev/null +tr a '' < /dev/null +tr -s '\432' < /dev/null +tr a 'abc\' < /dev/null +tr a '\x' < /dev/null +tr -s < /dev/null + +# And make sure tr does the right thing when POSIXLY_... is set. |