The Embed test requires a major rewrite for VMS
Jarkko Hietaniemi [Wed, 7 Nov 2001 13:34:44 +0000 (13:34 +0000)]
(plus it reveals a couple of annoying glitches
in buffering), so skip the test for now; from
Charles Lane.

p4raw-id: //depot/perl@12884

lib/ExtUtils/Embed.t

index 8af06dc..9accc7a 100644 (file)
@@ -8,6 +8,10 @@ use Config;
 use ExtUtils::Embed;
 use File::Spec;
 
+if ($^O eq 'VMS') {
+   print "1..0  # not on VMS\n"; 
+   exit 0;
+}
 open(my $fh,">embed_test.c") || die "Cannot open embed_test.c:$!";
 print $fh <DATA>;
 close($fh);