diff --git a/theodolite-benchmarks/docker-test/smoketest-runner-all.sh b/theodolite-benchmarks/docker-test/smoketest-runner-all.sh new file mode 100755 index 0000000000000000000000000000000000000000..7863bcad6bb3fd52cd5d8e7ddeceec016d7127e0 --- /dev/null +++ b/theodolite-benchmarks/docker-test/smoketest-runner-all.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +find . -name 'test.sh' -type f -exec dirname {} \; | + sort | + xargs -I %s sh -c "./smoketest-runner.sh %s 1>&2; echo $?" | + sort | + awk '{count[$1!=0]++} END {print count[0] " tests successful, " count[1] " test failed."}; exit count[1]'