aboutsummaryrefslogtreecommitdiffstats
path: root/tests/techmap/run-test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/techmap/run-test.sh')
-rwxr-xr-xtests/techmap/run-test.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/techmap/run-test.sh b/tests/techmap/run-test.sh
index e2fc11e52..129451e08 100755
--- a/tests/techmap/run-test.sh
+++ b/tests/techmap/run-test.sh
@@ -8,3 +8,11 @@ for x in *_runtest.sh; do
exit 1
fi
done
+
+for d in */; do
+ if [ -x $d/run-test.sh ]; then
+ cd $d
+ bash run-test.sh
+ cd ..
+ fi
+done