#!/usr/bin/bash
set -e
# t/write_file.t writes into CWD and t/xxx.t interferes with "test" file.
DIR=$(mktemp -d)
cp -a /usr/libexec/perl-Test-Base/t "$DIR"
pushd "$DIR"
unset TEST_SHOW_NO_DIFFS
prove -I . -j "$(getconf _NPROCESSORS_ONLN)"
popd
rm -r "$DIR"
