Hello,
thank you very much for the log file! It seems that the problem is with
Test::HTTP::LocalServer not (correctly) starting up properly. If your
machine is not under heavy load, can you please test if
Test::HTTP::LocalServer properly starts up at all? The following code
should start the test server:
#!perl
use strict;
use warnings;
require Test::HTTP::LocalServer;
package Test::HTTP::LocalServer;
use File::Temp;
use File::Spec;
my $file = __PACKAGE__;
$file =~ s!::!/!g;
$file .= '.pm';
my ($tmpfh,$logfile) = File::Temp::tempfile();
close $tmpfh; my $server_file = File::Spec->catfile( dirname(
$INC{$file} ),'log-server' );
my ($fh,$url_file) = File::Temp::tempfile;
close $fh; # race condition, but oh well
my @opts = ("-f", $url_file);
my @cmd=( $^X, $server_file, '', $logfile, @opts );
warn "[@cmd]";
$ENV{TEST_HTTP_VERBOSE}=1;
#system(@cmd);
my $pid = system(1, @cmd);
sleep 1; # overkill, but good enough for the moment
warn $? if $?;
warn "Launched server as $pid";
-max
Am 12.01.2019 um 01:44 schrieb twata_1@yahoo.co.jp via RT:
Show quoted text> Queue: WWW-Mechanize-Chrome
> Ticket <URL:
https://rt.cpan.org/Ticket/Display.html?id=128098 >
>
> Still happening in 0.28.
>
> On 2018-12月-23 日 15:54:45, twata_1@yahoo.co.jp wrote:
>> Hi,
>>
>> It seems to me that WWW::Mechanize::Chrome 0.27 test hangs after t/49-
>> mech-get-file.t passed.
>> Please see the attached file.
>>
>> [Environment]
>> Windows 10 32bit
>> Strawberry Perl 5.28.0
>> Google Chrome 71.0.3578.98
>>
>>
>> Thank you,
>> --
>> twata
>
>
>