X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/1d91e75c53e7da5bf2c1b334f5aeecf241dc5ec4..82053b457be3de2ee5285dc13633222f4d30802c:/t/test.sh diff --git a/t/test.sh b/t/test.sh index 53a737095..1a49d6fc5 100755 --- a/t/test.sh +++ b/t/test.sh @@ -1 +1,9 @@ -perl -MExtUtils::Command::MM -e 'test_harness(0)' t/*.t +#!/bin/bash + +{ + if [[ -z $1 ]]; then + find t -type f -name '*.t' + else + echo -- "$@" + fi +} | HARNESS_OPTIONS=j:c xargs perl -X -Imodules/override -MTest::Harness -e 'BEGIN { push @INC, "modules/fallback" } runtests(@ARGV)'