summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/run-all.sh9
1 files changed, 5 insertions, 4 deletions
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 \
- $@ \
- ';'
+ $@