On Thursday 19 January 2006 14:28, Craig A. Berry wrote:

> On VMS, I don't think the
> permissions on the source of a copy have anything to do with the
> resulting permissions on the target.  If they do, they're way down
> the list after process defaults, the permissions on the directory
> into which we're copying, permissions on lower versions of the same
> file, access control lists, etc.

Seems like a skip is in order, then:

  SKIP:
  {
      skip( 'permissions not copied on VMS', 2 ) if $Is_VMS;

      is( -w $copy, -w $orig,     "       writable if original was" );
      is( -x $copy, -x $orig,     "       executable if original was" );
  }

-- c

Reply via email to