summaryrefslogtreecommitdiffstats
path: root/tests/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run.sh')
-rwxr-xr-xtests/run.sh2
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 ))