#!/bin/sh
for t in tests/*; do
  $t && echo PASS: $t || echo FAIL: $t
done
