kernel32/tests: Mark a failing test as broken.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52861
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2022-04-27 16:13:39 +02:00
parent d6effa7282
commit f68cccc825
1 changed files with 24 additions and 22 deletions

View File

@ -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 };