Fix Linux and Mac compiler warnings for Bug 473417 tests

This commit is contained in:
Robert Strong 2009-02-08 14:27:01 -08:00
Родитель 13d86d106c
Коммит 9b65a8f67f
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -150,8 +150,8 @@ int NS_main(int argc, NS_tchar **argv)
retval = ReadStrings(inifile, &testStrings); retval = ReadStrings(inifile, &testStrings);
if (retval != PARSE_ERROR) { if (retval != PARSE_ERROR) {
rv = 27; rv = 27;
printf("%s | %s %s ReadStrings returned %i, expected %i| Test 3\n", printf("%s | %s %s ReadStrings returned %i | Test 3\n",
UNEXPECTED_FAIL_PREFIX, TEST_NAME, retval, PARSE_ERROR); UNEXPECTED_FAIL_PREFIX, TEST_NAME, retval);
} }
// Test failure when the ini file exists with Title and without InfoText and // Test failure when the ini file exists with Title and without InfoText and
@ -160,8 +160,8 @@ int NS_main(int argc, NS_tchar **argv)
retval = ReadStrings(inifile, &testStrings); retval = ReadStrings(inifile, &testStrings);
if (retval != PARSE_ERROR) { if (retval != PARSE_ERROR) {
rv = 28; rv = 28;
printf("%s | %s ReadStrings returned %i, expected %i| Test 4\n", printf("%s | %s ReadStrings returned %i | Test 4\n",
UNEXPECTED_FAIL_PREFIX, TEST_NAME, retval, PARSE_ERROR); UNEXPECTED_FAIL_PREFIX, TEST_NAME, retval);
} }
// Test failure when the ini file doesn't exist // Test failure when the ini file doesn't exist