mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 09:21:03 +00:00
ICU-535 Fixed some compiler warnings
X-SVN-Rev: 2544
This commit is contained in:
parent
3d3eb3058e
commit
32cdc29d7d
1 changed files with 6 additions and 6 deletions
|
@ -50,15 +50,15 @@ void NormalizerConformanceTest::TestConformance(void) {
|
|||
UnicodeString buf;
|
||||
int32_t passCount = 0;
|
||||
int32_t failCount = 0;
|
||||
char path[256];
|
||||
char testPath[256];
|
||||
|
||||
// Construct the path to the test suite file
|
||||
uprv_strcpy(path, u_getDataDirectory());
|
||||
uprv_strcat(path, TEST_SUITE_DIR);
|
||||
uprv_strcat(path, U_FILE_SEP_STRING);
|
||||
uprv_strcat(path, TEST_SUITE_FILE);
|
||||
uprv_strcpy(testPath, u_getDataDirectory());
|
||||
uprv_strcat(testPath, TEST_SUITE_DIR);
|
||||
uprv_strcat(testPath, U_FILE_SEP_STRING);
|
||||
uprv_strcat(testPath, TEST_SUITE_FILE);
|
||||
|
||||
FileStream *input = T_FileStream_open(path, "r");
|
||||
FileStream *input = T_FileStream_open(testPath, "r");
|
||||
if (input == NULL) {
|
||||
errln((UnicodeString)"Can't open " TEST_SUITE_FILE);
|
||||
return;
|
||||
|
|
Loading…
Add table
Reference in a new issue