#!/bin/bash
set -e
# t/write_file.t writes into CWD
DIR=$(mktemp -d)
cp -a /usr/libexec/perl-Test-Base/t "$DIR"
pushd "$DIR" >/dev/null
unset TEST_SHOW_NO_DIFFS
prove -I . -j "$(getconf _NPROCESSORS_ONLN)"
popd >/dev/null
rm -rf "$DIR"
