Home | History | Annotate | Download | only in cintltst

Lines Matching refs:ures_openU

995     log_verbose("Testing ures_openU()......\n");
1009 /* Convert all backslashes to forward slashes so that we can make sure that ures_openU
1021 /*Test ures_openU */
1024 ures_close(ures_openU(largeBuffer, "root", &status));
1026 log_err("ERROR: ures_openU() worked when the path is very large. It returned %s\n", myErrorName(status));
1030 ures_close(ures_openU(NULL, "root", &status));
1032 log_err_status(status, "ERROR: ures_openU() failed path = NULL with %s\n", myErrorName(status));
1036 if(ures_openU(NULL, "root", &status) != NULL){
1037 log_err("ERROR: ures_openU() worked with error status with %s\n", myErrorName(status));
1041 teRes=ures_openU(utestdatapath, "te", &status);
1043 log_err_status(status, "ERROR: ures_openU() failed path =%s with %s\n", austrdup(utestdatapath), myErrorName(status));
1170 /*Test ures_openU with status != U_ZERO_ERROR*/
1171 log_verbose("Testing ures_openU() with status != U_ZERO_ERROR.....\n");
1173 teRes=ures_openU(utestdatapath, "te", &status);
1175 log_verbose("ures_openU() failed as expected path =%s with status != U_ZERO_ERROR\n", testdatapath);
1177 log_err("ERROR: ures_openU() is supposed to fail path =%s with status != U_ZERO_ERROR\n", austrdup(utestdatapath));
1190 teRes=ures_openU(utestdatapath, "te", &status);
1192 log_err("ERROR: ures_openU() failed path =%s with %s\n", austrdup(utestdatapath), myErrorName(status));