diff options
Diffstat (limited to 'tests/run.sh')
-rwxr-xr-x | tests/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run.sh b/tests/run.sh index 275b68733..feb0089ff 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -10,7 +10,7 @@ rm -f *~ res=0 count=0 -for ts in `ls ts-*`; do +for ts in $(find -maxdepth 1 -regex "\./ts[^\.~]*" | sort); do $TS_TOPDIR/$ts res=$(( $res + $? )) count=$(( $count + 1 )) |