- Timestamp:
- Feb 14, 2012 11:16:58 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76267
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/utf-16.cpp
r40091 r40123 264 264 if (!Cp) 265 265 break; 266 for (pCp = puszValidSet; ; ++pCp) 267 if (!*pCp || *pCp == Cp) 266 for (pCp = puszValidSet; *pCp; pCp += 2) 267 { 268 AssertReturn(*(pCp + 1), -1); 269 if (*pCp <= Cp && *(pCp + 1) >= Cp) /* No, I won't do * and ++. */ 268 270 break; 271 } 269 272 if (!*pCp) 270 273 { -
trunk/src/VBox/Runtime/common/string/utf-8.cpp
r40091 r40123 365 365 if (!Cp) 366 366 break; 367 for (pCp = puszValidSet; ; ++pCp) 368 if (!*pCp || *pCp == Cp) 367 for (pCp = puszValidSet; *pCp; pCp += 2) 368 { 369 AssertReturn(*(pCp + 1), -1); 370 if (*pCp <= Cp && *(pCp + 1) >= Cp) /* No, I won't do * and ++. */ 369 371 break; 372 } 370 373 if (!*pCp) 371 374 { -
trunk/src/VBox/Runtime/testcase/tstUtf8.cpp
r40074 r40123 845 845 { 846 846 RTTestSub(hTest, "RTStrPurgeComplementSet"); 847 RTUNICP aCpSet[] = { '1', '2', '3', '4', '5', 'w', 'r', 'f', 't', 'e', 848 '\0' }; 847 RTUNICP aCpSet[] = { '1', '5', 'w', 'w', 'r', 'r', 'e', 'f', 't', 't', 848 '\0' }; 849 RTUNICP aCpBadSet[] = { '1', '5', 'w', 'w', 'r', 'r', 'e', 'f', 't', 't', 850 '7', '\0' }; /* Contains an incomplete pair. */ 849 851 struct 850 852 { … … 862 864 { "hjhj8766", "????????", aCpSet, '?', 8 }, 863 865 { "123\xf0\xa4\xad\xa2""4", "123____4", aCpSet, '_', 1 }, 864 { "\xff", "\xff", aCpSet, '_', -1 } 866 { "\xff", "\xff", aCpSet, '_', -1 }, 867 { "____", "____", aCpBadSet, '_', -1 } 865 868 }; 866 869 enum { MAX_IN_STRING = 256 }; … … 890 893 { 891 894 RTTestSub(hTest, "RTUtf16PurgeComplementSet"); 892 RTUNICP aCpSet[] = { '1', '2', '3', '4', '5', 'w', 'r', 'f', 't', 'e', 893 '\0' }; 895 RTUNICP aCpSet[] = { '1', '5', 'w', 'w', 'r', 'r', 'e', 'f', 't', 't', 896 '\0' }; 897 RTUNICP aCpBadSet[] = { '1', '5', 'w', 'w', 'r', 'r', 'e', 'f', 't', 't', 898 '7', '\0' }; /* Contains an incomplete pair. */ 894 899 struct 895 900 { … … 909 914 { "123\xf0\xa4\xad\xa2""4", "123__4", 0, aCpSet, '_', 1 }, 910 915 { "\xff\xff\0", "\xff\xff\0", 2, aCpSet, '_', -1 }, 911 { "\xff\xff\0", "\xff\xff\0", 2, aCpSet, '_', -1 } 916 { "\xff\xff\0", "\xff\xff\0", 2, aCpSet, '_', -1 }, 917 { "____", "____", 0, aCpBadSet, '_', -1 } 912 918 }; 913 919 enum { MAX_IN_STRING = 256 }; … … 1508 1514 TstRTStrXCmp(hTest); 1509 1515 TstRTStrPurgeEncoding(hTest); 1516 /* TstRT*PurgeComplementSet test conditions which assert. */ 1517 bool fAreQuiet = RTAssertAreQuiet(), fMayPanic = RTAssertMayPanic(); 1518 RTAssertSetQuiet(true); 1519 RTAssertSetMayPanic(false); 1510 1520 TstRTStrPurgeComplementSet(hTest); 1511 1521 TstRTUtf16PurgeComplementSet(hTest); 1522 RTAssertSetQuiet(fAreQuiet); 1523 RTAssertSetMayPanic(fMayPanic); 1512 1524 testStrEnd(hTest); 1513 1525 testStrStr(hTest);
Note:
See TracChangeset
for help on using the changeset viewer.