[PATCH 1/2] kernel32/tests: Add NtAllocateVirtualMemory tests for ZeroBits behavior
The ZeroBits parameter doesn't behave as expected, and some 64bit code use it to allocate memory in the lower 32bit address space. The expected full behaviour is: * ZeroBits == 0: no constraint on address range * 0 < ZeroBits <= 15: returned address should have as many upper bits set to 0, starting at bit 31. In 64bit mode, upper 64bits should all be 0 as well. * 15 < ZeroBits <= 31: unsure, but probably same as ZeroBits == 15. * ZeroBits > 31: (64bit/WoW64 only) ZeroBits behaves as a bitmask, as if it was set to the number of leading 0 in the bitmask, works in the whole 64bit range. Signed-off-by: Rémi Bernon <rbernon(a)codeweavers.com> --- dlls/kernel32/tests/virtual.c | 72 +++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/dlls/kernel32/tests/virtual.c b/dlls/kernel32/tests/virtual.c index 474955630fd..c6a9f34954a 100644 --- a/dlls/kernel32/tests/virtual.c +++ b/dlls/kernel32/tests/virtual.c @@ -228,10 +228,12 @@ static void test_VirtualAllocEx(void) static void test_VirtualAlloc(void) { void *addr1, *addr2; + UINT_PTR mask; DWORD old_prot; MEMORY_BASIC_INFORMATION info; NTSTATUS status; SIZE_T size; + BOOL is_wow64; SetLastError(0xdeadbeef); addr1 = VirtualAlloc(0, 0, MEM_RESERVE, PAGE_NOACCESS); @@ -473,6 +475,76 @@ static void test_VirtualAlloc(void) ok(status == STATUS_INVALID_PARAMETER_3, "NtAllocateVirtualMemory returned %08x\n", status); if (status == STATUS_SUCCESS) ok(VirtualFree(addr2, 0, MEM_RELEASE), "VirtualFree failed\n"); + /* 1 zero bits should zero 63-31 upper bits */ + size = 0x1000; + addr2 = NULL; + mask = 0xffffffff8000ffffull; + status = pNtAllocateVirtualMemory(GetCurrentProcess(), &addr2, 1, &size, + MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE); + ok((status == STATUS_SUCCESS || broken(status == STATUS_INVALID_PARAMETER_3) /* winxp */) + && ((uintptr_t)addr2 & mask) == 0, + "NtAllocateVirtualMemory returned %08x, addr2: %x, mask: %x\n", status, addr2, mask); + if (status == STATUS_SUCCESS) + { + size = 0; + status = pNtFreeVirtualMemory(GetCurrentProcess(), &addr2, &size, MEM_RELEASE); + ok(status == STATUS_SUCCESS, "pNtFreeVirtualMemory return %08x, addr2: %p\n", status, addr2); + } + + /* 2 zero bits should zero 63-31 upper bits */ + size = 0x1000; + addr2 = NULL; + mask = 0xffffffff8000ffffull; + status = pNtAllocateVirtualMemory(GetCurrentProcess(), &addr2, 2, &size, + MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE); + ok(status == STATUS_SUCCESS && ((uintptr_t)addr2 & mask) == 0, + "NtAllocateVirtualMemory returned %08x, addr2: %x, mask: %x\n", status, addr2, mask); + if (status == STATUS_SUCCESS) + { + size = 0; + status = pNtFreeVirtualMemory(GetCurrentProcess(), &addr2, &size, MEM_RELEASE); + ok(status == STATUS_SUCCESS, "pNtFreeVirtualMemory return %08x, addr2: %p\n", status, addr2); + } + + /* 15 zero bits should zero 63-17 upper bits */ + size = 0x1000; + addr2 = NULL; + mask = 0xfffffffffff7ffffull; + status = pNtAllocateVirtualMemory(GetCurrentProcess(), &addr2, 15, &size, + MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE); + ok((status == STATUS_SUCCESS || status == STATUS_NO_MEMORY) && ((uintptr_t)addr2 & mask) == 0, + "NtAllocateVirtualMemory returned %08x, addr2: %x, mask: %x\n", status, addr2, mask); + if (status == STATUS_SUCCESS) + { + size = 0; + status = pNtFreeVirtualMemory(GetCurrentProcess(), &addr2, &size, MEM_RELEASE); + ok(status == STATUS_SUCCESS, "pNtFreeVirtualMemory return %08x, addr2: %p\n", status, addr2); + } + + /* zero bits > 31 should be considered as bitmask on 64bit and WoW64 */ + size = 0x1000; + addr2 = NULL; + mask = 0xffffffff7000ffffull; + status = pNtAllocateVirtualMemory(GetCurrentProcess(), &addr2, 0x1fffffff, &size, + MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE); + + if (sizeof(void *) == sizeof(int) && (!pIsWow64Process || + !pIsWow64Process( GetCurrentProcess(), &is_wow64 ) || !is_wow64)) + { + ok(status == STATUS_INVALID_PARAMETER_3, "NtAllocateVirtualMemory returned %08x\n", status); + } + else + { + ok(status == STATUS_SUCCESS && ((uintptr_t)addr2 & mask) == 0, + "NtAllocateVirtualMemory returned %08x, addr2: %x, mask: %x\n", status, addr2, mask); + if (status == STATUS_SUCCESS) + { + size = 0; + status = pNtFreeVirtualMemory(GetCurrentProcess(), &addr2, &size, MEM_RELEASE); + ok(status == STATUS_SUCCESS, "pNtFreeVirtualMemory return %08x, addr2: %p\n", status, addr2); + } + } + /* AT_ROUND_TO_PAGE flag is not supported for VirtualAlloc */ SetLastError(0xdeadbeef); addr2 = VirtualAlloc(addr1, 0x1000, MEM_RESERVE | MEM_COMMIT | AT_ROUND_TO_PAGE, PAGE_EXECUTE_READWRITE); -- 2.20.1
Memory allocated with NtAllocateVirtualMemory should be freed with NtFreeVirtualMemory, for consistency. Signed-off-by: Rémi Bernon <rbernon(a)codeweavers.com> --- dlls/kernel32/tests/virtual.c | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/dlls/kernel32/tests/virtual.c b/dlls/kernel32/tests/virtual.c index c6a9f34954a..aef8abd4007 100644 --- a/dlls/kernel32/tests/virtual.c +++ b/dlls/kernel32/tests/virtual.c @@ -456,7 +456,12 @@ static void test_VirtualAlloc(void) MEM_RESERVE | MEM_COMMIT, PAGE_EXECUTE_READWRITE); todo_wine ok(status == STATUS_CONFLICTING_ADDRESSES, "NtAllocateVirtualMemory returned %08x\n", status); - if (status == STATUS_SUCCESS) ok(VirtualFree(addr2, 0, MEM_RELEASE), "VirtualFree failed\n"); + if (status == STATUS_SUCCESS) + { + size = 0; + status = pNtFreeVirtualMemory(GetCurrentProcess(), &addr2, &size, MEM_RELEASE); + ok(status == STATUS_SUCCESS, "pNtFreeVirtualMemory return %08x, addr2: %p\n", status, addr2); + } /* 21 zero bits is valid */ size = 0x1000; @@ -465,7 +470,12 @@ static void test_VirtualAlloc(void) MEM_RESERVE | MEM_COMMIT, PAGE_EXECUTE_READWRITE); ok(status == STATUS_SUCCESS || status == STATUS_NO_MEMORY, "NtAllocateVirtualMemory returned %08x\n", status); - if (status == STATUS_SUCCESS) ok(VirtualFree(addr2, 0, MEM_RELEASE), "VirtualFree failed\n"); + if (status == STATUS_SUCCESS) + { + size = 0; + status = pNtFreeVirtualMemory(GetCurrentProcess(), &addr2, &size, MEM_RELEASE); + ok(status == STATUS_SUCCESS, "pNtFreeVirtualMemory return %08x, addr2: %p\n", status, addr2); + } /* 22 zero bits is invalid */ size = 0x1000; @@ -473,7 +483,12 @@ static void test_VirtualAlloc(void) status = pNtAllocateVirtualMemory(GetCurrentProcess(), &addr2, 22, &size, MEM_RESERVE | MEM_COMMIT, PAGE_EXECUTE_READWRITE); ok(status == STATUS_INVALID_PARAMETER_3, "NtAllocateVirtualMemory returned %08x\n", status); - if (status == STATUS_SUCCESS) ok(VirtualFree(addr2, 0, MEM_RELEASE), "VirtualFree failed\n"); + if (status == STATUS_SUCCESS) + { + size = 0; + status = pNtFreeVirtualMemory(GetCurrentProcess(), &addr2, &size, MEM_RELEASE); + ok(status == STATUS_SUCCESS, "pNtFreeVirtualMemory return %08x, addr2: %p\n", status, addr2); + } /* 1 zero bits should zero 63-31 upper bits */ size = 0x1000; -- 2.20.1
Hi, While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=52803 Your paranoid android. === wvistau64 (32 bit report) === kernel32: virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 0, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:2982: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2996: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3121: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3139: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3220: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3244: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 1, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 === wvistau64_zh_CN (32 bit report) === kernel32: virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 0, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:2982: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2996: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3121: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3139: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3220: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3244: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 1, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 === wvistau64_fr (32 bit report) === kernel32: virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 0, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:2982: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2996: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3121: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3139: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3220: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3244: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 1, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 === wvistau64_he (32 bit report) === kernel32: virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 0, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:2982: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2996: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3121: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3139: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3220: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3244: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 1, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 === w2008s64 (32 bit report) === kernel32: virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 0, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:2982: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2996: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3121: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3139: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3220: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3244: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 1, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 === w7u (32 bit report) === kernel32: virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 0, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 1, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 === w7pro64 (32 bit report) === kernel32: virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 0, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:2982: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2996: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3121: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3139: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3220: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3244: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 1, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 === w8 (32 bit report) === kernel32: virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 0, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:2982: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2996: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3121: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3139: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3220: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3244: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 1, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 === w8adm (32 bit report) === kernel32: virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 0, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:2982: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2996: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3121: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3139: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3220: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3244: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 1, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 === w864 (32 bit report) === kernel32: virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 0, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:2982: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2996: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3121: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3139: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3220: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3244: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 1, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 === w1064v1507 (32 bit report) === kernel32: virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 0, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:2982: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2996: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3121: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3139: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3220: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3244: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 1, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 === w1064v1809 (32 bit report) === kernel32: virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 0, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:2982: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2996: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3121: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3139: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3220: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3244: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2926: Test failed: expected policy flags 1, got 3 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3040: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3103: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3284: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3309: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2888: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2927: Test failed: expected policy permanent FALSE, got 1 virtual.c:3346: Test failed: NtSetInformationProcess failed with status c0000022 === debian9 (32 bit report) === kernel32: virtual.c:499: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:515: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:530: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 228000, mask: fff7ffff === debian9 (32 bit French report) === kernel32: virtual.c:499: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:515: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:530: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 228000, mask: fff7ffff === debian9 (32 bit Japanese:Japan report) === kernel32: virtual.c:499: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:515: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:530: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 228000, mask: fff7ffff === debian9 (32 bit Chinese:China report) === kernel32: virtual.c:499: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:515: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:530: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 228000, mask: fff7ffff === debian9 (32 bit WoW report) === kernel32: virtual.c:499: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:515: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:530: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 228000, mask: fff7ffff virtual.c:553: Test failed: NtAllocateVirtualMemory returned c00000f1, addr2: 0, mask: 7000ffff === debian9 (64 bit WoW report) === kernel32: virtual.c:499: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:515: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:530: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 228000, mask: fff7ffff virtual.c:553: Test failed: NtAllocateVirtualMemory returned c00000f1, addr2: 0, mask: 7000ffff
Hi, While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=52802 Your paranoid android. === wvistau64 (32 bit report) === kernel32: virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 0, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:2967: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2981: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3106: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3124: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3205: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3229: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 1, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 === wvistau64_zh_CN (32 bit report) === kernel32: virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 0, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:2967: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2981: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3106: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3124: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3205: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3229: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 1, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 === wvistau64_fr (32 bit report) === kernel32: virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 0, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:2967: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2981: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3106: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3124: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3205: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3229: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 1, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 === wvistau64_he (32 bit report) === kernel32: virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 0, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:2967: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2981: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3106: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3124: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3205: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3229: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 1, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 === w2008s64 (32 bit report) === kernel32: virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 0, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:2967: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2981: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3106: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3124: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3205: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3229: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 1, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 === w7u (32 bit report) === kernel32: virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 0, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 1, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 === w7pro64 (32 bit report) === kernel32: virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 0, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:2967: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2981: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3106: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3124: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3205: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3229: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 1, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 === w8 (32 bit report) === kernel32: virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 0, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:2967: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2981: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3106: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3124: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3205: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3229: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 1, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 === w8adm (32 bit report) === kernel32: virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 0, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:2967: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2981: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3106: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3124: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3205: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3229: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 1, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 === w864 (32 bit report) === kernel32: virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 0, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:2967: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2981: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3106: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3124: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3205: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3229: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 1, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 === w1064v1507 (32 bit report) === kernel32: virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 0, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:2967: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2981: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3106: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3124: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3205: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3229: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 1, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 === w1064v1809 (32 bit report) === kernel32: virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 0, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:2967: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:2981: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3106: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3124: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3205: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3229: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2911: Test failed: expected policy flags 1, got 3 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3010: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3025: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3073: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3088: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3269: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3294: Test failed: expected no STATUS_ACCESS_VIOLATION exception, got 1 exceptions virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2873: Test failed: NtSetInformationProcess failed with status c0000022 virtual.c:2912: Test failed: expected policy permanent FALSE, got 1 virtual.c:3331: Test failed: NtSetInformationProcess failed with status c0000022 === debian9 (32 bit report) === kernel32: virtual.c:484: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:500: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:515: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 228000, mask: fff7ffff === debian9 (32 bit French report) === kernel32: virtual.c:484: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:500: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:515: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 228000, mask: fff7ffff === debian9 (32 bit Japanese:Japan report) === kernel32: virtual.c:484: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:500: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:515: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 228000, mask: fff7ffff === debian9 (32 bit Chinese:China report) === kernel32: virtual.c:484: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:500: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:515: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 228000, mask: fff7ffff === debian9 (32 bit WoW report) === kernel32: virtual.c:484: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:500: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:515: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 228000, mask: fff7ffff virtual.c:538: Test failed: NtAllocateVirtualMemory returned c00000f1, addr2: 0, mask: 7000ffff === debian9 (64 bit WoW report) === kernel32: virtual.c:484: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:500: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 223000, mask: 8000ffff virtual.c:515: Test failed: NtAllocateVirtualMemory returned 00000000, addr2: 228000, mask: fff7ffff virtual.c:538: Test failed: NtAllocateVirtualMemory returned c00000f1, addr2: 0, mask: 7000ffff
participants (2)
-
Marvin -
Rémi Bernon