#!/bin/sh
set -e -u
if [ "$(id -u)" != 0 ]
then
    printf '%s: you must run this as root.\n' "$0" >&2
    exit 1
fi
cp -a tests/* "$ADTTMP"
cd "$ADTTMP"
make 2>&1
make run

# vim:ts=4 sw=4 et
