Home | History | Annotate | Download | only in cintltst

Lines Matching defs:testCases

291    const char *testCases[] = {
306 for(j=0;testCases[j]!=NULL;j+=3) {
307 v1str = testCases[j+0];
308 opstr = testCases[j+1];
309 v2str = testCases[j+2];
486 } testCases[] = {
504 int32_t count=(sizeof(testCases)/sizeof(testCases[0]));
511 const char *input = STRNULL(testCases[i].inBuf);
512 const char *expect = STRNULL(testCases[i].expectResult);
514 result = STRNULL(findBasename(testCases[i].inBuf));
532 } testCases[] = {
612 int32_t count=(sizeof(testCases)/sizeof(testCases[0]));
617 const char *input = STRNULL(testCases[i].inBuf);
618 const char *expect = STRNULL(testCases[i].expectResult);
623 result = STRNULL(findDirname(testCases[i].inBuf, toolutil_testBuf, testCases[i].outBufLen, &status));
625 if(status != testCases[i].expectStatus) {
626 log_verbose("FAIL: Test case [%d/%d]: %s got error code %s but expected %s\n", i, count-1, input, u_errorName(status), u_errorName(testCases[i].expectStatus));