#!/usr/bin/bash
set -e
# Many tests, e.g. t/regression/chart_axis25.t, create files under CWD
DIR=$(mktemp -d)
cp -a /usr/libexec/perl-Excel-Writer-XLSX/* "$DIR"
pushd "$DIR"
exec prove -I . -r -j "$(getconf _NPROCESSORS_ONLN)"
popd
rm -r "$DIR"
