test: term: When checking if status line is a number, hide errors
We use the [ "$x" -eq "$x" ] syntax to check if $x is a number. The behaviour is clearly implied by POSIX, but some shells might actually report the (intended) error, and dash floods script.log with "Illegal number" error messages. Hide them. Signed-off-by: Stefano Brivio <sbrivio@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
9fc476af6e
commit
b323e5f439
1 changed files with 1 additions and 1 deletions
|
@ -232,7 +232,7 @@ pane_status() {
|
||||||
[ ${DEMO} -eq 1 ] && return 0
|
[ ${DEMO} -eq 1 ] && return 0
|
||||||
|
|
||||||
__status="$(pane_parse "${1}")"
|
__status="$(pane_parse "${1}")"
|
||||||
while ! [ "${__status}" -eq "${__status}" ]; do
|
while ! [ "${__status}" -eq "${__status}" ] 2>/dev/null; do
|
||||||
sleep 1
|
sleep 1
|
||||||
pane_run "${1}" 'echo $?'
|
pane_run "${1}" 'echo $?'
|
||||||
pane_wait "${1}"
|
pane_wait "${1}"
|
||||||
|
|
Loading…
Reference in a new issue