ntdll/tests: Mark RtlUnicodeStringToInteger("", 16) as broken for nt4.

This commit is contained in:
Huw Davies 2009-05-19 14:47:47 +01:00 committed by Alexandre Julliard
parent 8aa2db4724
commit fd0e796919
1 changed files with 2 additions and 1 deletions

View File

@ -1357,7 +1357,8 @@ static void test_RtlUnicodeStringToInteger(void)
test_num, str2int[test_num].str, str2int[test_num].base, result,
str2int[test_num].result, str2int[test_num].alternative);
if (result == STATUS_SUCCESS)
ok(value == str2int[test_num].value,
ok(value == str2int[test_num].value ||
broken(str2int[test_num].str[0] == '\0' && str2int[test_num].base == 16), /* nt4 */
"(test %d): RtlUnicodeStringToInteger(\"%s\", %d, [out]) assigns value %d, expected: %d\n",
test_num, str2int[test_num].str, str2int[test_num].base, value, str2int[test_num].value);
else