From 5d957d80d2a0ca0341a397a83af08ce8d21b4632 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 5 Aug 2025 15:46:49 +0200 Subject: [PATCH] sp --- tests/ech_tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ech_tests.sh b/tests/ech_tests.sh index 790880560b..9912929ff3 100755 --- a/tests/ech_tests.sh +++ b/tests/ech_tests.sh @@ -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"