Sort list of directories in run.sh scripts
[ctf-testsuite.git] / tests / 1.8 / run.sh
index 855609843a5d76afacf91f80a9e416ce49ef425f..9b3a3923b1a2502b7a7822801be41d61d4a89139 100755 (executable)
@@ -1,6 +1,8 @@
 #!/bin/sh
 
-#pass/run.sh
-
-cd fail/
-./run.sh
+for dir in $(find -mindepth 1 -maxdepth 1 -type d | sort); do
+       echo "Running ${dir} tests"
+       cd ${dir}
+       ./run.sh
+       cd ..
+done
This page took 0.021755 seconds and 4 git commands to generate.