diff --git a/test/run-all.sh b/test/run-all.sh index 5bfbee8c3..be660f27f 100755 --- a/test/run-all.sh +++ b/test/run-all.sh @@ -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 \ - $@ \ - ';' + $@