Merge pull request #67780 from ClickHouse/fix-small-diagnostic-in-test

Fix diagnostics in the test script
This commit is contained in:
Alexey Milovidov 2024-08-05 12:27:37 +00:00 committed by GitHub
commit 5875900189
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -266,7 +266,7 @@ function run_tests()
| ts '%Y-%m-%d %H:%M:%S' \
| tee -a test_output/test_result.txt
set -e
DURATION=$((START_TIME - SECONDS))
DURATION=$((SECONDS - START_TIME))
echo "Elapsed ${DURATION} seconds."
if [[ $DURATION -ge $TIMEOUT ]]