Fixed http tests to use local libs and run better on win32
[catagits/Catalyst-Runtime.git] / t / optional / http-server-restart.t
index d8fa69f..de618ae 100644 (file)
@@ -24,14 +24,14 @@ rmtree "$FindBin::Bin/../../t/var" if -d "$FindBin::Bin/../../t/var";
 # create a TestApp and copy the test libs into it\r
 mkdir "$FindBin::Bin/../../t/var";\r
 chdir "$FindBin::Bin/../../t/var";\r
-system "$FindBin::Bin/../../script/catalyst.pl TestApp";\r
+system "perl $FindBin::Bin/../../script/catalyst.pl TestApp";\r
 chdir "$FindBin::Bin/../..";\r
 File::Copy::Recursive::dircopy( 't/live/lib', 't/var/TestApp/lib' );\r
 \r
 # spawn the standalone HTTP server\r
 my $port = 30000 + int rand(1 + 10000);\r
 my $pid = open my $server, \r
-    "$FindBin::Bin/../../t/var/TestApp/script/testapp_server.pl -port $port -restart 2>&1 |"\r
+    "perl -I$FindBin::Bin/../../lib $FindBin::Bin/../../t/var/TestApp/script/testapp_server.pl -port $port -restart 2>&1 |"\r
     or die "Unable to spawn standalone HTTP server: $!";\r
 \r
 # wait for it to start\r
@@ -89,7 +89,7 @@ for ( 1..20 ) {
 }\r
 \r
 # shut it down\r
-kill 2, $pid;\r
+kill 'INT', $pid;\r
 close $server;\r
 \r
 # clean up\r