[ID 20001129.007] Not OK: perl v5.7.0 +DEVEL7928 on VMS_AXP V7.1 (UNINSTALLED)
authorPeter Prymmer <PPrymmer@factset.com>
Wed, 29 Nov 2000 15:16:45 +0000 (07:16 -0800)
committerJarkko Hietaniemi <jhi@iki.fi>
Thu, 30 Nov 2000 06:07:26 +0000 (06:07 +0000)
Message-Id: <Pine.OSF.4.10.10011291515570.328738-100000@aspara.forte.com>

In VMS the localhost may be LOCALHOST.

p4raw-id: //depot/perl@7933

t/lib/net-hostent.t

index 3388a93..4a5df80 100644 (file)
@@ -30,12 +30,14 @@ print "ok 3\n";
 # return the name of the machine instead of "localhost" when resolving
 # 127.0.0.1 or even "localhost"
 
+# VMS returns "LOCALHOST" under tcp/ip services V4.1 ECO 2, possibly others
+
 if ($^O eq 'MSWin32') {
   print "ok $_ # skipped on win32\n" for (4,5);
 } else {
-  print "not " if $h->name ne "localhost";
-  print "ok 4\n";
+  print "not " if $h->name !~ /localhost/i;
+  print "ok 4 # ",$h->name,"\n";
 
-  print "not " if $i->name ne "localhost";
-  print "ok 5\n";
+  print "not " if $i->name !~ /localhost/i;
+  print "ok 5 # ",$i->name,"\n";
 }