summaryrefslogtreecommitdiff
path: root/all.do
diff options
context:
space:
mode:
authorNils Dagsson Moskopp <nils@dieweltistgarnichtso.net>2014-09-25 14:31:35 +0200
committerNils Dagsson Moskopp <nils@dieweltistgarnichtso.net>2014-09-25 14:31:35 +0200
commitfcf34f61061f5e53709d25c4a70e63eff2d7ebd2 (patch)
tree3ce0ecc5691a4ec562d726cfb33be7094564746a /all.do
parenta61d603425c05271b2cce93a3a99c4fda92061ad (diff)
+ top-level dofile to run all tests
Diffstat (limited to 'all.do')
-rw-r--r--all.do6
1 files changed, 6 insertions, 0 deletions
diff --git a/all.do b/all.do
new file mode 100644
index 0000000..3912ce6
--- /dev/null
+++ b/all.do
@@ -0,0 +1,6 @@
+#!/bin/sh
+for dir in *; do
+ if test -d $dir; then
+ (cd $dir && redo)
+ fi
+done