Commit fd0e7969 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

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

parent 8aa2db47
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment