Fix: use Bash for all shell scripts
[ctf-testsuite.git] / tests / 1.8 / run.sh
index 1ffd52a464a73d0af33cd2e64435e9bb22df405f..6c7b91f2e9f09549324058c415c189dc6f5ebc85 100755 (executable)
@@ -1,11 +1,8 @@
-#!/bin/sh
+#!/bin/bash
 
-echo "Running expected pass tests"
-cd pass
-./run.sh
-cd ..
-
-echo "Running expected failure tests"
-cd fail
-./run.sh
-cd ,,
+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.029327 seconds and 4 git commands to generate.