mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-20 00:09:01 +00:00
CI tests: fix infinite loop
Fixed 261df79f which added continue in a loop _prior_ to incrementing
the loop variable.
This commit is contained in:
4
.github/scripts/run_scheduled_tests.sh
vendored
4
.github/scripts/run_scheduled_tests.sh
vendored
@@ -86,6 +86,8 @@ while [ $i -lt $test_count ]; do
|
||||
eval "args=\$test_${i}_args"
|
||||
eval "opts=\$test_${i}_opts"
|
||||
|
||||
i=$((i + 1))
|
||||
|
||||
exec=$run_uv
|
||||
tool=uv
|
||||
if expr -- "$opts" : '.*run_reflector' >/dev/null; then
|
||||
@@ -125,7 +127,5 @@ while [ $i -lt $test_count ]; do
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
i=$((i + 1))
|
||||
done
|
||||
|
||||
|
||||
Reference in New Issue
Block a user