#!/bin/sh
#
# run upstream unittests (JS+PHP)

set -eu

for t in `ls tests/unit/*.php`; do
    echo "Running unit tests from $t"
    php "$t"
done
