Changeset 91766 in vbox
- Timestamp:
- Oct 15, 2021 6:14:38 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147540
- Location:
- trunk/src/VBox/Runtime/testcase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstRTNetIPv4.cpp
r87362 r91766 318 318 GOODCIDR("1.2.3.4/255.255.255.0", 0x01020304, 24); 319 319 GOODCIDR("1.2.3.4/255.255.255.255", 0x01020304, 32); 320 321 #if 0 322 /** @todo doesn't support 0/0 yet */ 323 GOODCIDR("0.0.0.0/0", 0x00000000, 0); 324 GOODCIDR("0.0.0.0/0x0", 0x00000000, 0); 325 GOODCIDR("0.0.0.0/0.0.0.0", 0x00000000, 0); 326 #endif 320 327 321 328 GOODCIDR("\t " "1.2.3.4/24", 0x01020304, 24); /* leading spaces ok */ -
trunk/src/VBox/Runtime/testcase/tstRTNetIPv6.cpp
r87524 r91766 247 247 GOODCIDR("1:2:3:4::%if/64", 0x00010002, 0x00030004, 0, 0, 64); 248 248 249 #if0 250 /** @todo doesn't support ::/0 yet */ 251 GOODCIDR("::/0", 0, 0, 0, 0, 0); 252 #endif 253 249 254 BADCIDR("1:2:3:4:: 64"); 250 255 BADCIDR("1:2:3:4::/64x");
Note:
See TracChangeset
for help on using the changeset viewer.