Skip to content

Commit

Permalink
make tests pass when build directory contains space
Browse files Browse the repository at this point in the history
  • Loading branch information
clkao committed Jun 30, 2012
1 parent 1e2415f commit b0469b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion t/findbin.t
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use Test::More;
my $s = Test::TCP->new(
code => sub {
my $port = shift;
exec "$^X bin/starman --port $port --max-requests=1 --workers=1 $FindBin::Bin/findbin.psgi";
exec "$^X bin/starman --port $port --max-requests=1 --workers=1 '$FindBin::Bin/findbin.psgi'";
},
);

Expand Down
2 changes: 1 addition & 1 deletion t/rand.t
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ for (1..2) { # preload, non-preload
my $s = Test::TCP->new(
code => sub {
my $port = shift;
exec "$^X bin/starman $preload --port $port --max-requests=1 --workers=1 $FindBin::Bin/rand.psgi";
exec "$^X bin/starman $preload --port $port --max-requests=1 --workers=1 '$FindBin::Bin/rand.psgi'";
},
);

Expand Down

0 comments on commit b0469b6

Please sign in to comment.