#!/bin/sh
set -eu

chmod ugo+x tests/test_confinement.sh
for testcase in tests/test_*; do
    ./${testcase}
done
