Home | History | Annotate | Download | only in cintltst

Lines Matching full:testptr

1140     const SpelloutParseTest * testPtr;
1141 for (testPtr = spelloutParseTests; testPtr->testname != NULL; ++testPtr) {
1143 int32_t value, position = testPtr->startPos;
1144 UNumberFormat *nf = unum_open(UNUM_SPELLOUT, NULL, 0, testPtr->locale, NULL, &status);
1146 log_err_status(status, "unum_open fails for UNUM_SPELLOUT with locale %s, status %s\n", testPtr->locale, myErrorName(status));
1149 value = unum_parse(nf, testPtr->source, -1, &position, &status);
1150 if ( value != testPtr->value || position != testPtr->endPos || status != testPtr->status ) {
1152 testPtr->locale, testPtr->testname, testPtr->startPos,
1153 testPtr->value, testPtr->endPos, myErrorName(testPtr->status),