ext/Devel/DProf/DProf.t - different way
Paul Green [Fri, 18 Jan 2002 16:22:00 +0000 (11:22 -0500)]
Message-Id: <200201182125.QAA08563@mailhub1.stratus.com>

p4raw-id: //depot/perl@14341

ext/Devel/DProf/DProf.t

index 5ecba68..de4064d 100644 (file)
@@ -3,6 +3,7 @@
 BEGIN {
     chdir( 't' ) if -d 't';
     @INC = '../lib';
+    require './test.pl';      # for which_perl() etc
     require Config; import Config;
     if ($Config{'extensions'} !~ /\bDevel\/DProf\b/){
       print "1..0 # Skip: Devel::DProf was not built\n";
@@ -27,7 +28,7 @@ getopts('vI:p:');
 
 $path_sep = $Config{path_sep} || ':';
 $perl5lib = $opt_I || join( $path_sep, @INC );
-$perl = $opt_p || $^X;
+$perl = $opt_p || which_perl();
 
 if( $opt_v ){
        print "tests: @tests\n";