From: Jarkko Hietaniemi <jhi@iki.fi>
Date: Wed, 7 Nov 2001 13:34:44 +0000 (+0000)
Subject: The Embed test requires a major rewrite for VMS
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0cb90816a57536a8f9d92580939234780790f6bb;p=p5sagit%2Fp5-mst-13.2.git

The Embed test requires a major rewrite for VMS
(plus it reveals a couple of annoying glitches
in buffering), so skip the test for now; from
Charles Lane.

p4raw-id: //depot/perl@12884
---

diff --git a/lib/ExtUtils/Embed.t b/lib/ExtUtils/Embed.t
index 8af06dc..9accc7a 100644
--- a/lib/ExtUtils/Embed.t
+++ b/lib/ExtUtils/Embed.t
@@ -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);