#!/bin/bash
for dir in */
do
    pushd "${dir}"
    ./test --quiet
    popd
done
