Module: wine Branch: master Commit: e0f98c0ce96f5575d3e167de4e7647ba2529bc0d URL: https://gitlab.winehq.org/wine/wine/-/commit/e0f98c0ce96f5575d3e167de4e7647b...
Author: Alexandre Julliard julliard@winehq.org Date: Fri Sep 15 16:31:26 2023 +0200
ntdll/tests: Mark some tests as todo for ARM64.
---
dlls/ntdll/tests/wow64.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/dlls/ntdll/tests/wow64.c b/dlls/ntdll/tests/wow64.c index 07375f16082..99f6a6dec65 100644 --- a/dlls/ntdll/tests/wow64.c +++ b/dlls/ntdll/tests/wow64.c @@ -540,6 +540,7 @@ static void test_cross_process_notifications( HANDLE process, void *ptr )
FlushInstructionCache( process, addr, 0x1234 ); entry = pop_from_work_list( &list->work_list ); + todo_wine_if (current_machine == IMAGE_FILE_MACHINE_ARM64) entry = expect_cross_work_entry( list, entry, CrossProcessFlushCache, addr, 0x1234, 0xcccccccc, 0xcccccccc, 0xcccccccc, 0xcccccccc ); ok( !entry, "not at end of list\n" ); @@ -1084,6 +1085,7 @@ static void test_image_mappings(void) } else if (current_machine == IMAGE_FILE_MACHINE_ARM64) { + todo_wine ok( status == STATUS_IMAGE_MACHINE_TYPE_MISMATCH, "NtMapViewOfSection returned %08lx\n", status ); NtUnmapViewOfSection( process, ptr ); }