I get a successful build with the following 2 test failures, then that 
all-too-familiar hang.  My environment is DEC C 5.2, VMS AXP 7.1, configured 
with -des.

[.comp]script...........FAILED on test 1
[.io]openpid............FAILED on test 8

The first one can be fixed by:

--- t/comp/script.t;-0  Mon Feb 28 00:58:49 2000
+++ t/comp/script.t     Wed Mar  1 18:44:39 2000
@@ -4,7 +4,8 @@
  
  print "1..3\n";
  
-$PERL = ($^O eq 'MSWin32') ? '.\perl' : './perl';
+$PERL = ($^O eq 'MSWin32') ? '.\perl' : (($^O eq 'VMS') ? 'MCR []perl.' : './perl');
+
  $x = `$PERL -le "print 'ok';"`;
  
  if ($x eq "ok\n") {print "ok 1\n";} else {print "not ok 1\n";}
[End of Patch.]

Reply via email to