test: sort tests prior to running

This commit is contained in:
Mitchell Hashimoto
2022-07-22 13:59:51 -07:00
parent 3dbe9cba43
commit 65c0472701

View File

@ -16,10 +16,11 @@ IMAGE=$(docker build --file ${DIR}/Dockerfile -q ${DIR})
# this less esoterically if we ever wanted.
find ${DIR}/cases \
-type f \
-name '*.sh' \
-exec \
-name '*.sh' | \
sort | \
xargs \
-I '{}' \
${DIR}/run-host.sh \
--case '{}' \
--rewrite-abs-path \
$@ \
';'
$@