From 46779d7d8619ebe402dcb34bf983450cfff229bc Mon Sep 17 00:00:00 2001 From: Guillaume Rousse Date: Fri, 6 Jan 2012 16:37:36 +0100 Subject: [PATCH] allow to specific junit result file name --- Makefile.PL | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 0d4434fb14..a5863a6bfc 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -208,9 +208,9 @@ sub test { my $test = $self->SUPER::test(@_); $test .= <<'EOF'; -junit.xml: +%-junit.xml: prove --lib --timer --recurse --formatter TAP::Formatter::JUnit t \ - > junit.xml + > $@ EOF return $test;