cvsuser     04/08/16 02:02:38

  Modified:    t/src    extend.t
  Log:
  Cygwin hanging on the test is no reason to skip it everywhere.
  
  Revision  Changes    Path
  1.26      +2 -2      parrot/t/src/extend.t
  
  Index: extend.t
  ===================================================================
  RCS file: /cvs/public/parrot/t/src/extend.t,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -w -r1.25 -r1.26
  --- extend.t  25 Jun 2004 19:05:17 -0000      1.25
  +++ extend.t  16 Aug 2004 09:02:38 -0000      1.26
  @@ -1,6 +1,6 @@
   #! perl -w
   # Copyright: 2001-2003 The Perl Foundation.  All Rights Reserved.
  -# $Id: extend.t,v 1.25 2004/06/25 19:05:17 nicholas Exp $
  +# $Id: extend.t,v 1.26 2004/08/16 09:02:38 jhi Exp $
   # Tests the extension API
   
   =head1 NAME
  @@ -388,7 +388,7 @@
   OUTPUT
   
   my $temp = 'temp';;
  -SKIP: { skip("Hangs on cygwin", 1);
  +SKIP: { skip("Hangs on cygwin", 1) if $^O eq 'cygwin';
   open S, ">$temp.pasm" or die "Can't write $temp.pasm";
   print S <<'EOF';
     .pcc_sub _sub1:
  
  
  

Reply via email to