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:
parent
d6effa7282
commit
f68cccc825
|
@ -4435,7 +4435,9 @@ static void test_GetCPInfo(void)
|
||||||
ok( ret, "UnmapViewOfFile failed err %lu\n", GetLastError() );
|
ok( ret, "UnmapViewOfFile failed err %lu\n", GetLastError() );
|
||||||
|
|
||||||
status = pNtGetNlsSectionPtr( 11, 65001, NULL, &ptr, &size );
|
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)
|
if (pRtlInitCodePageTable)
|
||||||
{
|
{
|
||||||
static USHORT utf8[20] = { 0, CP_UTF8 };
|
static USHORT utf8[20] = { 0, CP_UTF8 };
|
||||||
|
|
Loading…
Reference in New Issue