blob: 0bfa526ecd3c68de92ae0399202f22e2b44925c4 [file] [log] [blame]
#!/bin/sh
set -e
for dir in $(find . -maxdepth 1 -mindepth 1 -type d); do
(cd $dir && ./test_all)
done