Commit f68cccc8 authored by Alexandre Julliard's avatar Alexandre Julliard

kernel32/tests: Mark a failing test as broken.

parent d6effa72
......@@ -4435,7 +4435,9 @@ static void test_GetCPInfo(void)
ok( ret, "UnmapViewOfFile failed err %lu\n", GetLastError() );
status = pNtGetNlsSectionPtr( 11, 65001, NULL, &ptr, &size );
ok( status == STATUS_OBJECT_NAME_NOT_FOUND, "failed %lx\n", status );
ok( status == STATUS_OBJECT_NAME_NOT_FOUND || broken(!status), /* win10 1709 */
"failed %lx\n", status );
if (!status) UnmapViewOfFile( ptr );
if (pRtlInitCodePageTable)
{
static USHORT utf8[20] = { 0, CP_UTF8 };
......
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