Kai Blin : ws2_32: Test for invalid hostnames again.

Alexandre Julliard julliard at winehq.org
Mon May 19 16:25:42 CDT 2008


Module: wine
Branch: master
Commit: d88ee55e686c647b372d82c1349b06205561878a
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=d88ee55e686c647b372d82c1349b06205561878a

Author: Kai Blin <kai.blin at gmail.com>
Date:   Thu May 15 09:49:40 2008 +0200

ws2_32: Test for invalid hostnames again.

---

 dlls/ws2_32/tests/sock.c |   10 +++-------
 1 files changed, 3 insertions(+), 7 deletions(-)

diff --git a/dlls/ws2_32/tests/sock.c b/dlls/ws2_32/tests/sock.c
index 13bb705..405b47e 100644
--- a/dlls/ws2_32/tests/sock.c
+++ b/dlls/ws2_32/tests/sock.c
@@ -1828,14 +1828,10 @@ static void test_gethostbyname_hack(void)
         }
     }
 
-#if 0
-    /* Can't expect ISPs to behave anymore; many send you to spam sites
-     * if you type in a bogus URL nowadays.
-     */
     he = NULL;
-    he = gethostbyname("someweirdandbogusname");
-    ok(he == NULL, "gethostbyname(\"someweirdandbogusname\") succeeded.\n");
-#endif
+    he = gethostbyname("nonexistent.winehq.org");
+    /* Don't check for the return value, as some braindead ISPs will kindly
+     * resolve nonexistent host names to addresses of the ISP's spam pages. */
 }
 
 static void test_inet_addr(void)




More information about the wine-cvs mailing list