Home | History | Annotate | Download | only in intltest

Lines Matching refs:setTest

1824   } setTest[] = {
1836 for(i = 0; i < sizeof(setTest)/sizeof(setTest[0]); i++) {
1837 buff = UnicodeString(setTest[i].rules, "").unescape();
1841 if(set->size() != setTest[i].testsize) {
1842 errln("Tailored set size different (%d) than expected (%d)", set->size(), setTest[i].testsize);
1844 for(j = 0; j < (uint32_t)setTest[i].testsize; j++) {
1845 buff = UnicodeString(setTest[i].tests[j], "").unescape();
1847 errln("Tailored set doesn't contain %s... It should", setTest[i].tests[j]);
1852 errcheckln(status, "Couldn't open collator with rules %s - %s", setTest[i].rules, u_errorName(status));