ICU-22085 Fix old typo on calculating path size in loadTestData() and add a few small changes to support running ICU unit tests in Xcode.

This commit is contained in:
Rich Gillam 2022-07-12 13:19:08 -07:00
parent 721d41153e
commit 4f6f087f2e
2 changed files with 7 additions and 4 deletions

View file

@ -539,7 +539,10 @@ const char* loadTestData(UErrorCode* err){
UResourceBundle* test =NULL;
char* tdpath=NULL;
const char* tdrelativepath;
#if defined (U_TOPBUILDDIR)
#if defined (APPLE_XCODE_BUILD)
tdrelativepath = "";
directory = U_TOPBUILDDIR;
#elif defined (U_TOPBUILDDIR)
tdrelativepath = "test"U_FILE_SEP_STRING"testdata"U_FILE_SEP_STRING"out"U_FILE_SEP_STRING;
directory = U_TOPBUILDDIR;
#else
@ -547,7 +550,7 @@ const char* loadTestData(UErrorCode* err){
directory= ctest_dataOutDir();
#endif
tdpath = (char*) ctst_malloc(sizeof(char) *(( strlen(directory) * strlen(tdrelativepath)) + 10));
tdpath = (char*) ctst_malloc(sizeof(char) *(( strlen(directory) + strlen(tdrelativepath)) + 10));
/* u_getDataDirectory shoul return \source\data ... set the

View file

@ -75,8 +75,8 @@ parseUCDFile(const char *filename,
char *fields[][2], int32_t fieldCount,
UParseLineFn *lineFn, void *context,
UErrorCode *pErrorCode) {
char path[256];
char backupPath[256];
char path[512];
char backupPath[512];
if(U_FAILURE(*pErrorCode)) {
return;