svn commit: branches/uClibc_0_9_29/test/inet

vapier at uclibc.org vapier at uclibc.org
Sat Jan 5 17:36:47 UTC 2008


Author: vapier
Date: 2008-01-05 09:36:47 -0800 (Sat, 05 Jan 2008)
New Revision: 20765

Log:
Merge r19841 by vapier from trunk:
add more tests as suggested by Natanael Copa and as harvested from:
http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/92880


Modified:
   branches/uClibc_0_9_29/test/inet/tst-network.c


Changeset:
Modified: branches/uClibc_0_9_29/test/inet/tst-network.c
===================================================================
--- branches/uClibc_0_9_29/test/inet/tst-network.c	2008-01-05 17:36:29 UTC (rev 20764)
+++ branches/uClibc_0_9_29/test/inet/tst-network.c	2008-01-05 17:36:47 UTC (rev 20765)
@@ -43,7 +43,37 @@
   {"1.1410.", INADDR_NONE},
   {"1.1410", INADDR_NONE},
   {"141.76.1111", INADDR_NONE},
-  {"141.76.1111.", INADDR_NONE}
+  {"141.76.1111.", INADDR_NONE},
+  /* Now some from BSD */
+  {"0x12", 0x00000012},
+  {"127.1", 0x00007f01},
+  {"127.1.2.3", 0x7f010203},
+  {"0x123456", INADDR_NONE},
+  {"0x12.0x34", 0x00001234},
+  {"0x12.0x345", INADDR_NONE},
+  {"1.2.3.4.5", INADDR_NONE},
+  {"1..3.4", INADDR_NONE},
+  {".", INADDR_NONE},
+  {"1.", INADDR_NONE},
+  {".1", INADDR_NONE},
+  {"x", INADDR_NONE},
+  {"0x", INADDR_NONE},
+  {"0", 0x00000000},
+  {"0x0", 0x00000000},
+  {"01.02.07.077", 0x0102073f},
+  {"0x1.23.045.0", 0x01172500},
+  {"", INADDR_NONE},
+  {" ", INADDR_NONE},
+  {"bar", INADDR_NONE},
+  {"1.2bar", INADDR_NONE},
+  {"1.", INADDR_NONE},
+  {"ÊÃÕËÅÎ", INADDR_NONE},
+  {"255.255.255.255", INADDR_NONE},
+  {"x", INADDR_NONE},
+  {"0X12", 0x00000012},
+  {"078", INADDR_NONE},
+  {"1 bar", INADDR_NONE},
+  {"127.0xfff", INADDR_NONE},
 };
 
 




More information about the uClibc-cvs mailing list