Randomize test execution.

pull/62/head
Fernando Costa 2016-10-17 23:27:47 -03:00 committed by Adrian Perez
parent c5deb79e8f
commit f2f0cdc9de
1 changed files with 1 additions and 1 deletions

2
t/run
View File

@ -26,7 +26,7 @@ readonly dynamic
declare -a t_pass=( ) declare -a t_pass=( )
declare -a t_fail=( ) declare -a t_fail=( )
for t in "$T"/*.test ; do for t in `ls "$T"/*.test | sort -R` ; do
name="t/${t##*/}" name="t/${t##*/}"
name=${name%.test} name=${name%.test}
printf "${name} ... " printf "${name} ... "