#!/bin/sh

set -e

cd macholib_tests

for test in test*.py; do
	echo "--------------------- ${test} -------------------"
	if [ ! -e "${test}" ]; then
		echo "SKIPPING ${test}"
		continue
	fi
	python3 "${test}"
done
