diff options
author | Rob Landley <rob@landley.net> | 2019-12-28 19:40:48 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-12-28 19:40:48 -0600 |
commit | 11de552df33ffd9d20a6fc98b87828b37b0f7805 (patch) | |
tree | 358427764f6a7c87072c164f94cb0848bd9b432e /scripts | |
parent | 779fde307d7a78e1f5913bec9b7ff0300edc29f1 (diff) | |
download | toybox-11de552df33ffd9d20a6fc98b87828b37b0f7805.tar.gz |
Add VERBOSE=xpect
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/runtest.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/runtest.sh b/scripts/runtest.sh index 2cc8ff7a..75872c9e 100644 --- a/scripts/runtest.sh +++ b/scripts/runtest.sh @@ -173,7 +173,7 @@ do_fail() # txpect NAME COMMAND [I/O/E/Xstring]... # Run COMMAND and interact with it: send I strings to input, read O or E -# strings from stdout or stderr (empty string is "any nonzero string here"), +# strings from stdout or stderr (empty string is "read line of input here"), # X means close stdin/stdout/stderr and match return code (blank means nonzero) txpect() { @@ -195,6 +195,7 @@ txpect() # Loop through challenge/response pairs, with 2 second timeout while [ $# -gt 0 ] do + [ "$VERBOSE" == xpect ] && echo "$1" >&2 LEN=$((${#1}-1)) CASE="$1" A= @@ -208,7 +209,9 @@ txpect() [ $LEN == 0 ] && LARG="" || LARG="-rN $LEN" O=$OUT [ ${1::1} == 'E' ] && O=$ERR + A= read -t2 $LARG A <&$O + [ "$VERBOSE" == xpect ] && echo "$A" >&2 if [ $LEN -eq 0 ] then [ -z "$A" ] && { do_fail;break;} @@ -236,6 +239,7 @@ txpect() [ $A != "${1:1}" ] && { do_fail;break;} # specific value fi ;; + *) do_fail; break ;; esac shift done |