large-r.should-get: Make the test POSIX compliant
The for i in {x..y} construct is Bash-specific. An alternative would have been for i in $(seq x y) but seq comes from GNU and is therefore not POSIX. A good old-fashioned while does the job! Fixes #3197
Showing
Please register or sign in to comment