mirror of
https://github.com/curl/curl.git
synced 2026-06-08 10:54:16 +03:00
sp
This commit is contained in:
parent
588a0d8da7
commit
5d957d80d2
1 changed files with 2 additions and 2 deletions
|
|
@ -163,9 +163,9 @@ function cli_test()
|
|||
IFS=" " read -r -a echparms <<< "${@:4}"
|
||||
|
||||
TMPF=$(mktemp)
|
||||
cmd="timeout $tout $CURL ${CURL_PARAMS[*]} ${echparms[*]} $turl >$TMPF 2>&1"
|
||||
cmd="timeout $tout $CURL ${CURL_PARAMS[*]} ${echparms[*]} $turl > $TMPF 2>&1"
|
||||
echo "cli_test: $cmd " >> "$logfile"
|
||||
timeout "$tout" "$CURL" "${CURL_PARAMS[@]}" "${echparms[@]}" "$turl" >"$TMPF" 2>&1
|
||||
timeout "$tout" "$CURL" "${CURL_PARAMS[@]}" "${echparms[@]}" "$turl" > "$TMPF" 2>&1
|
||||
eres=$?
|
||||
if [[ "$eres" == "124" ]]; then
|
||||
allgood="no"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue