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. # this less esoterically if we ever wanted.
find ${DIR}/cases \ find ${DIR}/cases \
-type f \ -type f \
-name '*.sh' \ -name '*.sh' | \
-exec \ sort | \
xargs \
-I '{}' \
${DIR}/run-host.sh \ ${DIR}/run-host.sh \
--case '{}' \ --case '{}' \
--rewrite-abs-path \ --rewrite-abs-path \
$@ \ $@
';'