Home | History | Annotate | Download | only in cintltst

Lines Matching full:testptr

1153     const SpelloutParseTest * testPtr;
1154 for (testPtr = spelloutParseTests; testPtr->testname != NULL; ++testPtr) {
1156 int32_t value, position = testPtr->startPos;
1157 UNumberFormat *nf = unum_open(UNUM_SPELLOUT, NULL, 0, testPtr->locale, NULL, &status);
1159 log_err_status(status, "unum_open fails for UNUM_SPELLOUT with locale %s, status %s\n", testPtr->locale, myErrorName(status));
1162 value = unum_parse(nf, testPtr->source, -1, &position, &status);
1163 if ( value != testPtr->value || position != testPtr->endPos || status != testPtr->status ) {
1165 testPtr->locale, testPtr->testname, testPtr->startPos,
1166 testPtr->value, testPtr->endPos, myErrorName(testPtr->status),