Lines Matching refs:testcmd
12 testcmd "echo" "&& echo yes" "\nyes\n" "" ""
13 testcmd "1 2 3" "one two three" "one two three\n" "" ""
14 testcmd "with spaces" "'one two three'" \
16 testcmd "" "-n" "" "" ""
17 testcmd "" "-n one" "one" "" ""
18 testcmd "" "one -n" "one -n\n" "" ""
19 testcmd "-en" "-en 'one\ntwo'" "one\ntwo" "" ""
20 testcmd "" "--hello" "--hello\n" "" ""
21 testcmd "-e all" "-e '\a\b\c\f\n\r\t\v\\\0123' | xxd -p" "0708\n" "" ""
22 testcmd "-e all but \\c" "-e '"'\a\b\f\n\r\t\v\\\0123'"' | xxd -p" \
24 testcmd "-nex hello" "-nex hello" "-nex hello\n" "" ""
27 testcmd "-e octal values" \
30 testcmd "-e invalid oct" "-ne 'one\\079two'" "one\a9two" "" ""
31 testcmd "-e \\0040" "-ne '\0040'" " " "" ""
34 testcmd "-e hexadecimal values" \
37 testcmd "-e invalid hex 1" "-e 'one\xvdtwo'" "one\\xvdtwo\n" "" ""
38 testcmd "-e invalid hex 2" "-e 'one\xavtwo'" "one\nvtwo\n" "" ""
41 testcmd "-e \e" "-ne '\\e' | xxd -p" "1b\n" "" ""
43 testcmd "-e \p" "-e '\\p'" "\\p\n" "" ""
46 testcmd "-En" "-En 'one\ntwo'" 'one\\ntwo' "" ""
47 testcmd "-eE" "-eE '\e'" '\\e\n' "" ""