From b64bc099b89f3c3c9ace1bce9062b88f146bed44 Mon Sep 17 00:00:00 2001 From: Greg Banks Date: Thu, 23 Feb 2012 11:55:45 +1100 Subject: [PATCH] autobuild: quote test error urls properly sigh. --- jenkins-xml-summary.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins-xml-summary.pl b/jenkins-xml-summary.pl index 21ef0865f..5d3bbed90 100755 --- a/jenkins-xml-summary.pl +++ b/jenkins-xml-summary.pl @@ -122,7 +122,7 @@ sub usage if (defined $build_url) { my $quoted_suite = $suite; - $quoted_suite =~ s/:\//_/g; + $quoted_suite =~ s/[:\/]/_/g; my $url = "$build_url/testReport/%28root%29/$quoted_suite/test_$case/"; print " $url\n"; }