Home | History | Annotate | Download | only in cintltst

Lines Matching refs:uscript_openRun

2140          * Make sure that calling uscript_OpenRun with a NULL text pointer
2144 scriptRun = uscript_openRun(NULL, stringLimit, &err);
2147 log_err("uscript_openRun(NULL, stringLimit, &err) returned %s instead of U_ILLEGAL_ARGUMENT_ERROR.\n", u_errorName(err));
2151 log_err("uscript_openRun(NULL, stringLimit, &err) returned a non-NULL result.\n");
2156 * Make sure that calling uscript_OpenRun with a non-NULL text pointer
2160 scriptRun = uscript_openRun(testString, 0, &err);
2163 log_err("uscript_openRun(testString, 0, &err) returned %s instead of U_ILLEGAL_ARGUMENT_ERROR.\n", u_errorName(err));
2167 log_err("uscript_openRun(testString, 0, &err) returned a non-NULL result.\n");
2172 * Make sure that calling uscript_openRun with a NULL text pointer
2176 scriptRun = uscript_openRun(NULL, 0, &err);
2179 log_err("Got error %s from uscript_openRun(NULL, 0, &err)\n", u_errorName(err));
2199 * Make sure that calling uscript_OpenRun with a non-NULL text pointer
2226 * using uscript_openRun and make sure that it works
2228 scriptRun = uscript_openRun(testString, stringLimit, &err);
2231 log_err("Got error %s from uscript_openRun(...)\n", u_errorName(err));
2233 CheckScriptRuns(scriptRun, runStarts, testData, nTestRuns, "uscript_openRun");