36 lines
1.2 KiB
Bash
Executable file
36 lines
1.2 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
[ -f testing.sh ] && . testing.sh
|
|
|
|
# This one's tricky both because echo is a shell builtin (so $PATH is
|
|
# irrelevant) and because the "result" field is parsed with echo -e.
|
|
# To make it work, "$CMD" is an explicit path to the command being tested,
|
|
# so "result" keeps using the shell builtin but we test the one in toybox.
|
|
|
|
#testing "name" "command" "result" "infile" "stdin"
|
|
|
|
testcmd "echo" "&& echo yes" "\nyes\n" "" ""
|
|
testcmd "1 2 3" "one two three" "one two three\n" "" ""
|
|
testcmd "with spaces" "'one two three'" \
|
|
"one two three\n" "" ""
|
|
testcmd "" "-n" "" "" ""
|
|
testcmd "" "-n one" "one" "" ""
|
|
testcmd "" "one -n" "one -n\n" "" ""
|
|
testcmd "-en" "-en 'one\ntwo'" "one\ntwo" "" ""
|
|
testcmd "" "--hello" "--hello\n" "" ""
|
|
testcmd "-e all" "-e '\a\b\c\f\n\r\t\v\\\0123' | xxd -p" "0708\n" "" ""
|
|
testcmd "-e all but \\c" "-e '"'\a\b\f\n\r\t\v\\\0123'"' | xxd -p" \
|
|
"07080c0a0d090b5c530a\n" "" ""
|
|
testcmd "-nex hello" "-nex hello" "-nex hello\n" "" ""
|
|
|
|
# Octal formatting tests
|
|
testcmd "-e octal values" \
|
|
"-ne '\01234 \0060 \060 \0130\0131\0132 \077\012'" \
|
|
"S4 0 0 XYZ ?\n" "" ""
|
|
|
|
# Hexadecimal value tests
|
|
testcmd "-e hexadecimal values" \
|
|
"-ne '\x534 \x30 \x58\x59\x5a \x3F\x0A'"\
|
|
"S4 0 XYZ ?\n" "" ""
|
|
|
|
testcmd "-e \p" "-e '\\p'" "\\p\n" "" ""
|