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