utils/run.sh: use $(find ...) instead of `*/`
[ctf-testsuite.git] / utils / run.sh
index 938cf60bb291d4a66fa4e59d96ecbaf043aa7b43..c5a1db55edd30d25e26614bb87737f408c3db80f 100755 (executable)
@@ -2,7 +2,7 @@
 
 TEST_PROG="./test.sh"
 
-for t in */; do
+for t in $(find -mindepth 1 -maxdepth 1 -type d | sort); do
        if [ -n "${TEST_LIST}" ]; then
                TEST_LIST="${TEST_LIST}\n"
        fi
This page took 0.023367 seconds and 4 git commands to generate.