mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
[ICU-8]jitterbug 10: Added better diagnostic on datafile open
X-Commit-URL: https://ssl.icu-project.org/trac/changeset/34
This commit is contained in:
parent
081f1b918e
commit
6394d369b7
1 changed files with 11 additions and 7 deletions
|
@ -302,14 +302,18 @@ void UnicodeTest::TestUnicodeData()
|
|||
char buffer[1000];
|
||||
char* bufferPtr, *dirPtr;
|
||||
char path[256];
|
||||
|
||||
const char* datafile = "UnicodeData-3.0.0.txt";
|
||||
|
||||
strcpy(path , icu_getDefaultDataDirectory());
|
||||
strcat(path, "UnicodeData-3.0.0.txt");
|
||||
|
||||
input = fopen( path, "r");
|
||||
#ifdef WIN32
|
||||
assert(input != 0);
|
||||
#endif
|
||||
strcat(path, datafile);
|
||||
|
||||
input = fopen( path, "r");
|
||||
if (input == 0)
|
||||
{
|
||||
errln("Failed to open: " + UnicodeString(datafile));
|
||||
return;
|
||||
}
|
||||
|
||||
int32_t unicode;
|
||||
for(;;) {
|
||||
bufferPtr = fgets(buffer, 999, input);
|
||||
|
|
Loading…
Add table
Reference in a new issue