Lines Matching refs:testing
3 [ -f testing.sh ] && . testing.sh
14 testing "echo" "$CMD && echo yes" "\nyes\n" "" ""
15 testing "echo 1 2 3" "$CMD one two three" "one two three\n" "" ""
16 testing "echo with spaces" "$CMD 'one two three'" \
18 testing "echo -n" "$CMD -n" "" "" ""
19 testing "echo -n one" "$CMD -n one" "one" "" ""
20 testing "echo one -n" "$CMD one -n" "one -n\n" "" ""
21 testing "echo -en" "$CMD -en 'one\ntwo'" "one\ntwo" "" ""
22 testing "echo --hello" "$CMD --hello" "--hello\n" "" ""
23 testing "echo -e all" "$CMD -e '\a\b\c\f\n\r\t\v\\\0123'" \
25 testing "echo -nex hello" "$CMD -nex hello" "-nex hello\n" "" ""
28 testing "echo -e octal values" \
33 testing "echo -e hexadecimal values" \
37 testing "echo -e \p" "$CMD -e '\\p'" "\\p\n" "" ""