X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Foptional_http-server-restart.t;h=1e163ba6652a711b1276403e6b79db0645b4cb8e;hb=6b2a933b5b3820e494f9b5804c7c2eb6083bcf09;hp=48e7013602d3bdf3bd93ab00fb0644e9ef9680ed;hpb=2f3812528068bc1d9f7840067f0c03d36cd47e6d;p=catagits%2FCatalyst-Runtime.git diff --git a/t/optional_http-server-restart.t b/t/optional_http-server-restart.t index 48e7013..1e163ba 100644 --- a/t/optional_http-server-restart.t +++ b/t/optional_http-server-restart.t @@ -29,7 +29,7 @@ rmtree $tmpdir if -d $tmpdir; mkdir $tmpdir; chdir $tmpdir; -system( 'perl', "-I$FindBin::Bin/../lib", "$FindBin::Bin/../script/catalyst.pl", 'TestApp' ); +system( $^X, "-I$FindBin::Bin/../lib", "$FindBin::Bin/../script/catalyst.pl", 'TestApp' ); chdir "$FindBin::Bin/.."; File::Copy::Recursive::dircopy( 't/lib', 't/tmp/TestApp/lib' ); @@ -42,7 +42,7 @@ my $port = 30000 + int rand( 1 + 10000 ); my( $server, $pid ); $pid = open3( undef, $server, undef, - 'perl', "-I$FindBin::Bin/../lib", + $^X, "-I$FindBin::Bin/../lib", "$FindBin::Bin/../t/tmp/TestApp/script/testapp_server.pl", '-port', $port, '-restart' ) or die "Unable to spawn standalone HTTP server: $!"; @@ -173,7 +173,7 @@ my $restartdirs = join ' ', map{ } qw/Action Engine/; $pid = open3( undef, $server, undef, - 'perl', "-I$FindBin::Bin/../lib", + $^X, "-I$FindBin::Bin/../lib", "$FindBin::Bin/../t/tmp/TestApp/script/testapp_server.pl", '-port', $port, '-restart', $restartdirs ) or die "Unable to spawn standalone HTTP server: $!"; @@ -204,7 +204,7 @@ for ( 1 .. 20 ) { sleep 0.1; if ( $count++ > 100 ) { fail "Server restarted"; - SKIP_NO_RESTART_2: { + SKIP: { skip "Server didn't restart, no sense in checking response", 1; } next MULTI_DIR_RESTART;