#!/bin/sh
set -e

# clean up old crash reports
rm -rf /var/crash/* 2>&1 || true

# succeeding test must not write anything to stderr, as per DEP-8
# work around LP #972324
env -u TMPDIR xvfb-run nosetests3 --process-restartworker --process-timeout=60 --exclude=test_cdrom 2>&1
