diff --git a/t/api-rest/testrunner b/t/api-rest/testrunner index c4d744636e..a2317446a2 100755 --- a/t/api-rest/testrunner +++ b/t/api-rest/testrunner @@ -44,13 +44,13 @@ RC=0 if [ "${FORMAT}" = "junit" ] ; then # shellcheck disable=SC2086 - prove --formatter TAP::Formatter::JUnit -l -It/lib $SELECT | \ + prove -m --formatter TAP::Formatter::JUnit -l -It/lib $SELECT | \ tee -a "${OUTPUT_DIRECTORY}/api-rest.xml" RC=${PIPESTATUS[0]} else # api-threads.t and api-balanceintervals.t are failing with the "-Pretty option" :( # shellcheck disable=SC2086 - prove -v --color -l -It/lib $SELECT | tee -a "${OUTPUT_DIRECTORY}/api-rest.pretty" + prove -m -v --color -l -It/lib $SELECT | tee -a "${OUTPUT_DIRECTORY}/api-rest.pretty" RC=${PIPESTATUS[0]} fi diff --git a/t/selenium/testrunner b/t/selenium/testrunner index f6a6239b68..9fffeb279c 100755 --- a/t/selenium/testrunner +++ b/t/selenium/testrunner @@ -50,10 +50,10 @@ echo "echo -e '$PASSWORD_ENCODED' >/tmp/vncpasswd ; vncviewer geometry=1280x1024 RC=0 if [ -n "${3:-}" ] && [ "${3:-}" = "junit" ] ; then - CATALYST_SERVER=https://${SERVER}:1443/ prove --formatter TAP::Formatter::JUnit -l -It/lib t/selenium/*.t | \ + CATALYST_SERVER=https://${SERVER}:1443/ prove -m --formatter TAP::Formatter::JUnit -l -It/lib t/selenium/*.t | \ tee -a "${OUTPUT_DIRECTORY}/selenium.xml" || RC=$? else - CATALYST_SERVER="https://${SERVER}:1443" prove -v --color -l -It/lib t/selenium/*.t | \ + CATALYST_SERVER="https://${SERVER}:1443" prove -m -v --color -l -It/lib t/selenium/*.t | \ tee -a "${OUTPUT_DIRECTORY}/selenium.pretty" || RC=$? fi