3 # Copyright 2009 by Denys Vlasenko <vda.linux@googlemail.com>
4 # Licensed under GPLv2, see file LICENSE in this source tree.
8 # testing "description" "arguments" "result" "infile" "stdin"
10 testing
"tr does not treat [] in [a-z] as special" \
11 "tr '[q-z]' '_Q-Z+'" \
14 testing
"tr understands 0-9A-F" \
18 optional FEATURE_TR_CLASSES
19 testing
"tr understands [:xdigit:]" \
20 "tr -cd '[:xdigit:]'" \
24 optional FEATURE_TR_CLASSES
25 testing
"tr does not stop after [:digit:]" \
26 "tr '[:digit:]y-z' 111111111123" \
27 "111abcx23\n" "" "789abcxyz\n"
30 optional FEATURE_TR_CLASSES
31 testing
"tr has correct xdigit sequence" \
32 "tr '[:xdigit:]Gg' 1111111151242222333330xX" \
33 "#1111111151242222x333330X\n" "" \
34 "#0123456789ABCDEFGabcdefg\n"