File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
Revision history for Perl extension Server::Starter.
2
2
3
+ 0.05 Tue Oct 13 20:30:00 2009
4
+ - use $^X in tests (or tests will fail on hosts using a different installation of perl from one installed to /usr/bin/perl)
5
+
3
6
0.04 Fri Oct 09 19:25:00 2009
4
7
- signals received just after spawning worker process were dismissed (thanks to kazeburo for reporting and helping fix the problem)
5
8
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ use Proc::Wait3;
11
11
12
12
use Exporter qw( import) ;
13
13
14
- our $VERSION = ' 0.04 ' ;
14
+ our $VERSION = ' 0.05 ' ;
15
15
our @EXPORT_OK = qw( start_server server_ports) ;
16
16
17
17
sub start_server {
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ test_tcp(
13
13
my $port = shift ;
14
14
start_server(
15
15
port => $port ,
16
- exec => [ qw( t/01-starter-echod.pl) ],
16
+ exec => [ $^X, qw( t/01-starter-echod.pl) ],
17
17
);
18
18
},
19
19
client => sub {
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ test_tcp(
11
11
my $port = shift ;
12
12
start_server(
13
13
port => $port ,
14
- exec => [ qw( t/02-startfail-server.pl) ],
14
+ exec => [ $^X, qw( t/02-startfail-server.pl) ],
15
15
);
16
16
},
17
17
client => sub {
You can’t perform that action at this time.
0 commit comments