Strawberry Perl - Net :: Server Check Hangs During Installation

When installing Net :: Server, the tests freeze at 4/5 and the locks are set until I send an interrupt signal. I tried searching on the internet but could not find anything suitable.

I am using Strawberry Perl 5.12.2 on Windows XP

Set output:

cpan> install Net :: Server
Running install for module 'Net :: Server'
Running make for R / RH / RHANDOM / Net-Server-0.99.tar.gz
  Has already been unwrapped into directory C: \ strawberry \ cpan \ build \ Net-Server-
0.99-lExqFv
  Has already been made
Running make test
C: \ strawberry \ perl \ bin \ perl.exe "-MExtUtils :: Command :: MM" "-e" "test_harness (0,
'blib \ lib', 'blib \ arch') "t / *. t
t / Options.t ............... ok
t / Port_Configuration.t .... ok
t / Server_BASE.t ........... ok
t / Server_Fork.t ........... ok
t / Server_http.t ........... 4/5 Terminating on signal SIGINT (2)
+3
source share
1 answer

The test uses alarm , which has portability problems . Net :: Server has not been tested successfully on Windows .

The author should write the test in a portable way. Report a problem description.

+5
source

All Articles