#!/bin/sh

set -ue

# Running the tests

cd test && python testall.py 2>&1 | tee ${AUTOPKGTEST_TMP}/test.log

# Examining the results

if grep --silent ^FAILED ${AUTOPKGTEST_TMP}/test.log
then
    echo Failed tests exist
    exit 1
fi
