VirtualBox

Changeset 91766 in vbox


Ignore:
Timestamp:
Oct 15, 2021 6:14:38 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
147540
Message:

IPRT/net: Add disabled tests for 0.0.0.0/0 and ::/0 - these are
currently rejected.

Location:
trunk/src/VBox/Runtime/testcase
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/testcase/tstRTNetIPv4.cpp

    r87362 r91766  
    318318    GOODCIDR("1.2.3.4/255.255.255.0",   0x01020304, 24);
    319319    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
    320327
    321328    GOODCIDR("\t " "1.2.3.4/24",       0x01020304, 24); /* leading spaces ok */
  • trunk/src/VBox/Runtime/testcase/tstRTNetIPv6.cpp

    r87524 r91766  
    247247    GOODCIDR("1:2:3:4::%if/64", 0x00010002, 0x00030004,          0,          0,  64);
    248248
     249#if0
     250    /** @todo doesn't support ::/0 yet */
     251    GOODCIDR("::/0", 0, 0, 0, 0, 0);
     252#endif
     253
    249254    BADCIDR("1:2:3:4:: 64");
    250255    BADCIDR("1:2:3:4::/64x");
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette