#!/bin/sh
set -e

TEST=$1
if [ "x$TEST" = "x" ]; then
  TEST=common
fi

cd tests/$TEST
./run_all.sh
