This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Skip t/porting/FindExt.t on VMS.
authorCraig A. Berry <craigberry@mac.com>
Sat, 27 Nov 2010 00:33:54 +0000 (18:33 -0600)
committerCraig A. Berry <craigberry@mac.com>
Sat, 27 Nov 2010 00:40:50 +0000 (18:40 -0600)
win32::FindExt doesn't work on VMS, but it's only intended to work
on Windows, so there's not much reason to port it or to test it.

t/porting/FindExt.t

index a877f8b..923211d 100644 (file)
@@ -1,6 +1,10 @@
 #!../miniperl -w
 
 BEGIN {
+    if ($^O eq 'VMS') {
+        print "1..0 # FindExt not portable.\n";
+        exit 0;
+    }
     @INC = qw(../win32 ../lib);
     require './test.pl';
 }