Fix: use Bash for all shell scripts
[ctf-testsuite.git] / tests / 1.8 / run.sh
index 855609843a5d76afacf91f80a9e416ce49ef425f..6c7b91f2e9f09549324058c415c189dc6f5ebc85 100755 (executable)
@@ -1,6 +1,8 @@
-#!/bin/sh
+#!/bin/bash
 
-#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.022741 seconds and 4 git commands to generate.