From 804853527c08906431d4d70ce43acc2d5bcbb2df Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Buclin?= Date: Mon, 29 Oct 2012 22:49:29 +0100 Subject: [PATCH] Bug 800964: Unknown dot(.) is present instead of 'T' in console while running testserver.pl on Windows r=wurblzap a=LpSolit --- testserver.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 =~ /^#!/) { -- 2.47.2