Attempt to fix core-specific logic in IPC::Open2 tests
Steffen Mueller [Fri, 4 Sep 2009 10:47:24 +0000 (12:47 +0200)]
ext/IPC-Open2/t/IPC-Open2.t

index fe49189..8a2fd76 100644 (file)
@@ -1,8 +1,6 @@
 #!./perl -w
 
 BEGIN {
-    chdir 't' if -d 't';
-    @INC = '../lib';
     require Config; import Config;
     if (!$Config{'d_fork'}
        # open2/3 supported on win32 (but not Borland due to CRT bugs)
@@ -20,7 +18,7 @@ use IO::Handle;
 use IPC::Open2;
 #require 'open2.pl'; use subs 'open2';
 
-my $perl = './perl';
+my $perl = $^X;
 
 sub ok {
     my ($n, $result, $info) = @_;