#!/bin/sh
# run this in a container without perl installed to check
# adduser on a system that doesn't have full perl. autopkgtest
# needs a full perl and can thus not be used here.

set -e

cd testsuite && ./runsuite.sh
cd ..
for t in debian/tests/f/*.t; do
    ./$t;
done

echo "all tests run"

