#!/bin/sh
set -e
cd "$(dirname "$0")"
NPROC="$(getconf _NPROCESSORS_ONLN 2>/dev/null || echo 1)"
exec prove -I . -It/lib -j "${NPROC}" t
