Lines Matching refs:ures_openU
999 log_verbose("Testing ures_openU()......\n");
1013 /* Convert all backslashes to forward slashes so that we can make sure that ures_openU
1025 /*Test ures_openU */
1028 ures_close(ures_openU(largeBuffer, "root", &status));
1030 log_err("ERROR: ures_openU() worked when the path is very large. It returned %s\n", myErrorName(status));
1034 ures_close(ures_openU(NULL, "root", &status));
1036 log_err_status(status, "ERROR: ures_openU() failed path = NULL with %s\n", myErrorName(status));
1040 if(ures_openU(NULL, "root", &status) != NULL){
1041 log_err("ERROR: ures_openU() worked with error status with %s\n", myErrorName(status));
1045 teRes=ures_openU(utestdatapath, "te", &status);
1047 log_err_status(status, "ERROR: ures_openU() failed path =%s with %s\n", austrdup(utestdatapath), myErrorName(status));
1173 /*Test ures_openU with status != U_ZERO_ERROR*/
1174 log_verbose("Testing ures_openU() with status != U_ZERO_ERROR.....\n");
1176 teRes=ures_openU(utestdatapath, "te", &status);
1178 log_verbose("ures_openU() failed as expected path =%s with status != U_ZERO_ERROR\n", testdatapath);
1180 log_err("ERROR: ures_openU() is supposed to fail path =%s with status != U_ZERO_ERROR\n", austrdup(utestdatapath));
1193 teRes=ures_openU(utestdatapath, "te", &status);
1195 log_err("ERROR: ures_openU() failed path =%s with %s\n", austrdup(utestdatapath), myErrorName(status));