From: Frédéric Buclin Date: Mon, 29 Oct 2012 21:49:29 +0000 (+0100) Subject: Bug 800964: Unknown dot(.) is present instead of 'T' in console while running testser... X-Git-Tag: bugzilla-4.4rc1~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=804853527c08906431d4d70ce43acc2d5bcbb2df;p=thirdparty%2Fbugzilla.git Bug 800964: Unknown dot(.) is present instead of 'T' in console while running testserver.pl on Windows r=wurblzap a=LpSolit --- diff --git a/testserver.pl b/testserver.pl index 488524792c..a9c63787fa 100755 --- a/testserver.pl +++ b/testserver.pl @@ -15,7 +15,7 @@ use lib qw(. lib); use Bugzilla; use Bugzilla::Constants; -use Bugzilla::Util qw(say); +use Bugzilla::Util; use Socket; @@ -97,7 +97,7 @@ Check your web server configuration and try again."; } # Try to execute a cgi script -my $response = fetch($ARGV[0] . "/testagent.cgi"); +my $response = clean_text(fetch($ARGV[0] . "/testagent.cgi")); if ($response =~ /^OK (.*)$/) { say "TEST-OK Webserver is executing CGIs via $1."; } elsif ($response =~ /^#!/) {