The read and pread syscalls are permitted to return fewer bytes than requested (unlike the fread libc call which will only perform a short read on error or EOF). This is most likely to occur when binaries are located on slower filesystems (e.g. NFS or 9pfs)
ffab9d9 is a relatively recent regression here, but a lot of the code appears to be much older (e.g. the read call in 341b7dc)
In this MR I've focused on ntdll, but I see a lot of similar mishandling of the pread return value in `server/`. I will raise a bug as I don't intend to create a follow up MR at this time.
From: Aidan Hobson Sayers aidanhs@cantab.net
The read and pread syscalls are permitted to return fewer bytes than requested (unlike the fread libc call which will only perform a short read on error or EOF). This is most likely to occur when binaries are located on slower filesystems (e.g. NFS or 9pfs)
ffab9d9 is a relatively recent regression here, but a lot of the code appears to be much older (e.g. the read call in 341b7dc) --- dlls/ntdll/unix/file.c | 2 +- dlls/ntdll/unix/process.c | 4 ++-- dlls/ntdll/unix/unix_private.h | 18 ++++++++++++++++++ dlls/ntdll/unix/virtual.c | 11 ++++++++--- 4 files changed, 29 insertions(+), 6 deletions(-)
diff --git a/dlls/ntdll/unix/file.c b/dlls/ntdll/unix/file.c index 3a24d4ebbf2..e440045df2e 100644 --- a/dlls/ntdll/unix/file.c +++ b/dlls/ntdll/unix/file.c @@ -6520,7 +6520,7 @@ static inline BOOL is_device_placeholder( int fd ) static const char wine_placeholder[] = "Wine device placeholder"; char buffer[sizeof(wine_placeholder)-1];
- if (pread( fd, buffer, sizeof(wine_placeholder) - 1, 0 ) != sizeof(wine_placeholder) - 1) + if (pread_all( fd, buffer, sizeof(wine_placeholder) - 1, 0 ) != sizeof(wine_placeholder) - 1) return FALSE; return !memcmp( buffer, wine_placeholder, sizeof(wine_placeholder) - 1 ); } diff --git a/dlls/ntdll/unix/process.c b/dlls/ntdll/unix/process.c index 30bd6f083bd..8224679aba7 100644 --- a/dlls/ntdll/unix/process.c +++ b/dlls/ntdll/unix/process.c @@ -190,7 +190,7 @@ static BOOL get_so_file_info( int fd, pe_image_info_t *info )
off_t pos;
- if (pread( fd, &header, sizeof(header), 0 ) != sizeof(header)) return FALSE; + if (pread_all( fd, &header, sizeof(header), 0 ) != sizeof(header)) return FALSE;
if (!memcmp( header.elf.magic, "\177ELF", 4 )) { @@ -223,7 +223,7 @@ static BOOL get_so_file_info( int fd, pe_image_info_t *info ) } while (phnum--) { - if (pread( fd, &type, sizeof(type), pos ) != sizeof(type)) return FALSE; + if (pread_all( fd, &type, sizeof(type), pos ) != sizeof(type)) return FALSE; if (type == 3 /* PT_INTERP */) return FALSE; pos += (header.elf.class == 2) ? 56 : 32; } diff --git a/dlls/ntdll/unix/unix_private.h b/dlls/ntdll/unix/unix_private.h index 6862d74b863..4cc00130cd0 100644 --- a/dlls/ntdll/unix/unix_private.h +++ b/dlls/ntdll/unix/unix_private.h @@ -23,6 +23,8 @@
#include <pthread.h> #include <signal.h> +#include <unistd.h> +#include <errno.h> #include "unixlib.h" #include "wine/unixlib.h" #include "wine/server.h" @@ -520,4 +522,20 @@ static inline NTSTATUS map_section( HANDLE mapping, void **ptr, SIZE_T *size, UL 0, NULL, size, ViewShare, 0, protect ); }
+static inline SSIZE_T pread_all( int fd, void *buf, size_t count, off_t offset ) +{ + ssize_t total = 0; + while (count - total != 0) { + ssize_t ret = pread( fd, (char *)buf + total, count - total, offset + total ); + if (ret == -1) { + if (errno == EINTR) { continue; } + return -1; + } else if (ret == 0) { + return total; + } + total += ret; + } + return total; +} + #endif /* __NTDLL_UNIX_PRIVATE_H */ diff --git a/dlls/ntdll/unix/virtual.c b/dlls/ntdll/unix/virtual.c index 62fc1c9dd1f..aecfe661ccb 100644 --- a/dlls/ntdll/unix/virtual.c +++ b/dlls/ntdll/unix/virtual.c @@ -2106,7 +2106,9 @@ static NTSTATUS map_file_into_view( struct file_view *view, int fd, size_t start ptr = anon_mmap_fixed( (char *)view->base + start, size, PROT_READ | PROT_WRITE, 0 ); if (ptr == MAP_FAILED) return STATUS_NO_MEMORY; /* Now read in the file */ - pread( fd, ptr, size, offset ); + if (pread_all( fd, ptr, size, offset ) != size) { + return STATUS_INVALID_PARAMETER; /* file was too short or error reading it */ + } if (prot != (PROT_READ|PROT_WRITE)) mprotect( ptr, size, prot ); /* Set the right protection */ done: set_page_vprot( (char *)view->base + start, size, vprot ); @@ -2411,7 +2413,10 @@ static NTSTATUS map_pe_header( void *ptr, size_t size, int fd, BOOL *removable ) } *removable = TRUE; } - pread( fd, ptr, size, 0 ); + pread_all( fd, ptr, size, 0 ); + if (pread_all( fd, ptr, size, 0 ) != size) { + return STATUS_INVALID_PARAMETER; /* file was too short or error reading it */ + } return STATUS_SUCCESS; /* page protections will be updated later */ }
@@ -4925,7 +4930,7 @@ static NTSTATUS get_working_set_ex( HANDLE process, LPCVOID addr, (vprot & VPROT_COMMITTED)) { if (pagemap_fd == -1 || - pread( pagemap_fd, &pagemap, sizeof(pagemap), ((UINT_PTR)p->VirtualAddress >> page_shift) * sizeof(pagemap) ) != sizeof(pagemap)) + pread_all( pagemap_fd, &pagemap, sizeof(pagemap), ((UINT_PTR)p->VirtualAddress >> page_shift) * sizeof(pagemap) ) != sizeof(pagemap)) { /* If we don't have pagemap information, default to invalid. */ pagemap = 0;
Hi,
It looks like your patch introduced the new failures shown below. Please investigate and fix them before resubmitting your patch. If they are not new, fixing them anyway would help a lot. Otherwise please ask for the known failures list to be updated.
The tests also ran into some preexisting test failures. If you know how to fix them that would be helpful. See the TestBot job for the details:
The full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=135140
Your paranoid android.
=== debian11b (64 bit WoW report) ===
kernel32: loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:2018: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 0: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 0: VirtualQuery error 6 loader.c:2075: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:2078: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 0: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 1: got 0x1 != expected 0x2 loader.c:2018: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 1: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x2 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x2 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x2 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 1: VirtualQuery error 6 loader.c:2075: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 1: got 0x1 != expected 0x2 loader.c:2078: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 1: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x2 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x2 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x2 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 2: got 0x1 != expected 0x8 loader.c:2018: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 2: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x8 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x8 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x8 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 2: VirtualQuery error 6 loader.c:2075: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 2: got 0x1 != expected 0x8 loader.c:2078: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 2: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x8 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x8 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x8 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 3: got 0x1 != expected 0x10 loader.c:2018: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 3: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x10 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x10 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x10 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 3: VirtualQuery error 6 loader.c:2075: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 3: got 0x1 != expected 0x10 loader.c:2078: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 3: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x10 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x10 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x10 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 4: got 0x1 != expected 0x8 loader.c:2018: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 4: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x8 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x8 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x8 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 4: VirtualQuery error 6 loader.c:2075: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 4: got 0x1 != expected 0x8 loader.c:2078: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 4: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x8 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x8 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x8 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 5: got 0x1 != expected 0x20 loader.c:2018: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 5: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x20 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x20 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x20 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 5: VirtualQuery error 6 loader.c:2075: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 5: got 0x1 != expected 0x20 loader.c:2078: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 5: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x20 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x20 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x20 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 6: got 0x1 != expected 0x80 loader.c:2018: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 6: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x80 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x80 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x80 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 6: VirtualQuery error 6 loader.c:2075: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 6: got 0x1 != expected 0x80 loader.c:2078: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 6: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x80 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x80 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x80 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 7: got 0x1 != expected 0x80 loader.c:2018: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 7: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x80 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x80 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x80 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 7: VirtualQuery error 6 loader.c:2075: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 7: got 0x1 != expected 0x80 loader.c:2078: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 7: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x80 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x80 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x80 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:2018: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 8: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 8: VirtualQuery error 6 loader.c:2075: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:2078: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 8: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 9: got 0x1 != expected 0x2 loader.c:2018: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 9: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x2 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x2 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x2 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 9: VirtualQuery error 6 loader.c:2075: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 9: got 0x1 != expected 0x2 loader.c:2078: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 9: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x2 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x2 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x2 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 10: got 0x1 != expected 0x8 loader.c:2018: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 10: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x8 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x8 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x8 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 10: VirtualQuery error 6 loader.c:2075: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 10: got 0x1 != expected 0x8 loader.c:2078: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 10: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x8 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x8 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x8 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 11: got 0x1 != expected 0x10 loader.c:2018: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 11: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x10 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x10 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x10 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 11: VirtualQuery error 6 loader.c:2075: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 11: got 0x1 != expected 0x10 loader.c:2078: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 11: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x10 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x10 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x10 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 12: got 0x1 != expected 0x8 loader.c:2018: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 12: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x8 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x8 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x8 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 12: VirtualQuery error 6 loader.c:2075: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 12: got 0x1 != expected 0x8 loader.c:2078: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 12: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x8 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x8 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x8 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 13: got 0x1 != expected 0x20 loader.c:2018: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 13: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x20 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x20 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x20 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 13: VirtualQuery error 6 loader.c:2075: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 13: got 0x1 != expected 0x20 loader.c:2078: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 13: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x20 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x20 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x20 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 14: got 0x1 != expected 0x80 loader.c:2018: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 14: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x80 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x80 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x80 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 14: VirtualQuery error 6 loader.c:2075: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 14: got 0x1 != expected 0x80 loader.c:2078: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 14: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x80 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x80 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x80 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 15: got 0x1 != expected 0x80 loader.c:2018: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 15: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x80 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x80 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x80 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 15: VirtualQuery error 6 loader.c:2075: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 15: got 0x1 != expected 0x80 loader.c:2078: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 15: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x80 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x80 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x80 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:2018: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 16: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 16: VirtualQuery error 6 loader.c:2075: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:2078: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 16: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 17: got 0x1 != expected 0x2 loader.c:2018: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 17: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x2 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x2 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x2 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 17: VirtualQuery error 6 loader.c:2075: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 17: got 0x1 != expected 0x2 loader.c:2078: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 17: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x2 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x2 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x2 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 18: got 0x1 != expected 0x8 loader.c:2018: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 18: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x8 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x8 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x8 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 18: VirtualQuery error 6 loader.c:2075: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 18: got 0x1 != expected 0x8 loader.c:2078: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 18: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x8 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x8 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x8 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 19: got 0x1 != expected 0x10 loader.c:2018: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 19: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x10 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x10 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x10 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 19: VirtualQuery error 6 loader.c:2075: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 19: got 0x1 != expected 0x10 loader.c:2078: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 19: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x10 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x10 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x10 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 20: got 0x1 != expected 0x8 loader.c:2018: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 20: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x8 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x8 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x8 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 20: VirtualQuery error 6 loader.c:2075: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 20: got 0x1 != expected 0x8 loader.c:2078: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 20: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x8 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x8 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x8 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 21: got 0x1 != expected 0x20 loader.c:2018: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 21: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x20 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x20 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x20 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 21: VirtualQuery error 6 loader.c:2075: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 21: got 0x1 != expected 0x20 loader.c:2078: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 21: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x20 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x20 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x20 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 22: got 0x1 != expected 0x80 loader.c:2018: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 22: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x80 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x80 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x80 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 22: VirtualQuery error 6 loader.c:2075: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 22: got 0x1 != expected 0x80 loader.c:2078: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 22: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x80 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x80 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x80 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2008: Test failed: LoadLibrary error 193 loader.c:2015: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:2016: Test failed: 23: got 0x1 != expected 0x80 loader.c:2018: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2019: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:2020: Test failed: 23: 0 != SEC_IMAGE loader.c:1809: Test failed: VirtualProtect error 87 loader.c:1819: Test failed: 0: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 0: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 0: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 0: 0 != SEC_IMAGE loader.c:1854: Test failed: 0: VirtualProtect error 87 loader.c:1858: Test failed: 0: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 1: 0 != SEC_IMAGE loader.c:1831: Test failed: 1: VirtualProtect error 87, requested prot 0x1 loader.c:1832: Test failed: 1: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 1: got 0xf000 != expected 0x1000 loader.c:1841: Test failed: 1: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 1: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 1: 0 != SEC_IMAGE loader.c:1854: Test failed: 1: VirtualProtect error 87 loader.c:1856: Test failed: 1: got 0xdeadbeef != expected 0x1 loader.c:1819: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 2: 0 != SEC_IMAGE loader.c:1831: Test failed: 2: VirtualProtect error 87, requested prot 0x2 loader.c:1832: Test failed: 2: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 2: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 2: got 0x1 != expected 0x2 loader.c:1841: Test failed: 2: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 2: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 2: 0 != SEC_IMAGE loader.c:1854: Test failed: 2: VirtualProtect error 87 loader.c:1856: Test failed: 2: got 0xdeadbeef != expected 0x2 loader.c:1819: Test failed: 3: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 3: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 3: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 3: 0 != SEC_IMAGE loader.c:1854: Test failed: 3: VirtualProtect error 87 loader.c:1858: Test failed: 3: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 4: 0 != SEC_IMAGE loader.c:1831: Test failed: 4: VirtualProtect error 87, requested prot 0x4 loader.c:1832: Test failed: 4: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 4: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 4: got 0x1 != expected 0x8 loader.c:1841: Test failed: 4: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 4: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 4: 0 != SEC_IMAGE loader.c:1854: Test failed: 4: VirtualProtect error 87 loader.c:1856: Test failed: 4: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 5: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 5: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 5: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 5: 0 != SEC_IMAGE loader.c:1854: Test failed: 5: VirtualProtect error 87 loader.c:1858: Test failed: 5: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 6: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 6: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 6: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 6: 0 != SEC_IMAGE loader.c:1854: Test failed: 6: VirtualProtect error 87 loader.c:1858: Test failed: 6: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 7: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 7: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 7: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 7: 0 != SEC_IMAGE loader.c:1854: Test failed: 7: VirtualProtect error 87 loader.c:1858: Test failed: 7: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 8: 0 != SEC_IMAGE loader.c:1831: Test failed: 8: VirtualProtect error 87, requested prot 0x8 loader.c:1832: Test failed: 8: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 8: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 8: got 0x1 != expected 0x8 loader.c:1841: Test failed: 8: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 8: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 8: 0 != SEC_IMAGE loader.c:1854: Test failed: 8: VirtualProtect error 87 loader.c:1856: Test failed: 8: got 0xdeadbeef != expected 0x8 loader.c:1819: Test failed: 9: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 9: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 9: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 9: 0 != SEC_IMAGE loader.c:1854: Test failed: 9: VirtualProtect error 87 loader.c:1858: Test failed: 9: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 10: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 10: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 10: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 10: 0 != SEC_IMAGE loader.c:1854: Test failed: 10: VirtualProtect error 87 loader.c:1858: Test failed: 10: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 11: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 11: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 11: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 11: 0 != SEC_IMAGE loader.c:1854: Test failed: 11: VirtualProtect error 87 loader.c:1858: Test failed: 11: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 12: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 12: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 12: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 12: 0 != SEC_IMAGE loader.c:1854: Test failed: 12: VirtualProtect error 87 loader.c:1858: Test failed: 12: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 13: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 13: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 13: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 13: 0 != SEC_IMAGE loader.c:1854: Test failed: 13: VirtualProtect error 87 loader.c:1858: Test failed: 13: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 14: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 14: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 14: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 14: 0 != SEC_IMAGE loader.c:1854: Test failed: 14: VirtualProtect error 87 loader.c:1858: Test failed: 14: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 15: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 15: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 15: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 15: 0 != SEC_IMAGE loader.c:1854: Test failed: 15: VirtualProtect error 87 loader.c:1858: Test failed: 15: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 16: 0 != SEC_IMAGE loader.c:1831: Test failed: 16: VirtualProtect error 87, requested prot 0x10 loader.c:1832: Test failed: 16: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 16: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 16: got 0x1 != expected 0x10 loader.c:1841: Test failed: 16: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 16: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 16: 0 != SEC_IMAGE loader.c:1854: Test failed: 16: VirtualProtect error 87 loader.c:1856: Test failed: 16: got 0xdeadbeef != expected 0x10 loader.c:1819: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 17: 0 != SEC_IMAGE loader.c:1831: Test failed: 17: VirtualProtect error 87, requested prot 0x20 loader.c:1832: Test failed: 17: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 17: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 17: got 0x1 != expected 0x20 loader.c:1841: Test failed: 17: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 17: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 17: 0 != SEC_IMAGE loader.c:1854: Test failed: 17: VirtualProtect error 87 loader.c:1856: Test failed: 17: got 0xdeadbeef != expected 0x20 loader.c:1819: Test failed: 18: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 18: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 18: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 18: 0 != SEC_IMAGE loader.c:1854: Test failed: 18: VirtualProtect error 87 loader.c:1858: Test failed: 18: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 19: 0 != SEC_IMAGE loader.c:1831: Test failed: 19: VirtualProtect error 87, requested prot 0x40 loader.c:1832: Test failed: 19: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 19: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 19: got 0x1 != expected 0x80 loader.c:1841: Test failed: 19: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 19: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 19: 0 != SEC_IMAGE loader.c:1854: Test failed: 19: VirtualProtect error 87 loader.c:1856: Test failed: 19: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 20: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 20: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 20: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 20: 0 != SEC_IMAGE loader.c:1854: Test failed: 20: VirtualProtect error 87 loader.c:1858: Test failed: 20: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 21: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 21: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 21: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 21: 0 != SEC_IMAGE loader.c:1854: Test failed: 21: VirtualProtect error 87 loader.c:1858: Test failed: 21: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 22: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 22: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 22: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 22: 0 != SEC_IMAGE loader.c:1854: Test failed: 22: VirtualProtect error 87 loader.c:1858: Test failed: 22: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 23: 0 != SEC_IMAGE loader.c:1831: Test failed: 23: VirtualProtect error 87, requested prot 0x80 loader.c:1832: Test failed: 23: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1838: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:1839: Test failed: 23: got 0x1 != expected 0x80 loader.c:1841: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1842: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:1843: Test failed: 23: 0 != SEC_IMAGE loader.c:1854: Test failed: 23: VirtualProtect error 87 loader.c:1856: Test failed: 23: got 0xdeadbeef != expected 0x80 loader.c:1819: Test failed: 24: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 24: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 24: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 24: 0 != SEC_IMAGE loader.c:1854: Test failed: 24: VirtualProtect error 87 loader.c:1858: Test failed: 24: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 25: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 25: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 25: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 25: 0 != SEC_IMAGE loader.c:1854: Test failed: 25: VirtualProtect error 87 loader.c:1858: Test failed: 25: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 26: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 26: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 26: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 26: 0 != SEC_IMAGE loader.c:1854: Test failed: 26: VirtualProtect error 87 loader.c:1858: Test failed: 26: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 27: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 27: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 27: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 27: 0 != SEC_IMAGE loader.c:1854: Test failed: 27: VirtualProtect error 87 loader.c:1858: Test failed: 27: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 28: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 28: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 28: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 28: 0 != SEC_IMAGE loader.c:1854: Test failed: 28: VirtualProtect error 87 loader.c:1858: Test failed: 28: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 29: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 29: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 29: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 29: 0 != SEC_IMAGE loader.c:1854: Test failed: 29: VirtualProtect error 87 loader.c:1858: Test failed: 29: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1819: Test failed: 30: got 0xf000 != expected 0x1000 loader.c:1822: Test failed: 30: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1823: Test failed: 30: 0x10000 != MEM_COMMIT loader.c:1824: Test failed: 30: 0 != SEC_IMAGE loader.c:1854: Test failed: 30: VirtualProtect error 87 loader.c:1858: Test failed: 30: got 0xdeadbeef != expected PAGE_NOACCESS loader.c:1879: Test failed: VirtualProtect(01) error 87 loader.c:1879: Test failed: VirtualProtect(02) error 87 loader.c:1879: Test failed: VirtualProtect(04) error 87 loader.c:1879: Test failed: VirtualProtect(08) error 87 loader.c:1879: Test failed: VirtualProtect(10) error 87 loader.c:1879: Test failed: VirtualProtect(20) error 87 loader.c:1879: Test failed: VirtualProtect(40) error 87 loader.c:1879: Test failed: VirtualProtect(80) error 87 loader.c:1889: Test failed: VirtualProtect error 87 loader.c:2041: Test failed: FreeLibrary error 6 loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x80 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x80 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x80 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1729: Test failed: expected ERROR_INVALID_ADDRESS, got 193 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2068: Test failed: CreateProcess() error 193 loader.c:2072: Test failed: 23: VirtualQuery error 6 loader.c:2075: Test failed: 23: got 0xf000 != expected 0x1000 loader.c:2076: Test failed: 23: got 0x1 != expected 0x80 loader.c:2078: Test failed: 23: 0 != PAGE_EXECUTE_WRITECOPY loader.c:2079: Test failed: 23: 0x10000 != MEM_COMMIT loader.c:2080: Test failed: 23: 0 != SEC_IMAGE loader.c:2091: Test failed: Got unexpected status 0xc0000008. loader.c:2095: Test failed: Got unexpected status 0xc0000008. loader.c:2098: Test failed: Got unexpected status 0xc0000008. loader.c:2104: Test failed: TerminateProcess() error 6 loader.c:2106: Test failed: WaitForSingleObject failed: ffffffff loader.c:1671: Test failed: NtMapViewOfSection error c000007b loader.c:1672: Test failed: mapped address should be valid loader.c:1678: Test failed: got 0xf000 != expected 0x1000 loader.c:1679: Test failed: got 0x1 != expected 0x80 loader.c:1681: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1682: Test failed: 0x10000 != MEM_COMMIT loader.c:1683: Test failed: 0 != SEC_IMAGE loader.c:1689: Test failed: expected STATUS_IMAGE_NOT_AT_BASE, got c000007b loader.c:1690: Test failed: mapped address should be valid loader.c:1691: Test failed: mapped addresses should be different loader.c:1697: Test failed: got 0xf000 != expected 0x1000 loader.c:1698: Test failed: got 0x1 != expected 0x80 loader.c:1700: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1701: Test failed: 0x10000 != MEM_COMMIT loader.c:1702: Test failed: 0 != SEC_IMAGE loader.c:1705: Test failed: NtUnmapViewOfSection error c0000019 loader.c:1708: Test failed: mapped address should be valid loader.c:1709: Test failed: mapped addresses should be different loader.c:1715: Test failed: got 0xf000 != expected 0x1000 loader.c:1716: Test failed: got 0x1 != expected 0x80 loader.c:1718: Test failed: 0 != PAGE_EXECUTE_WRITECOPY loader.c:1719: Test failed: 0x10000 != MEM_COMMIT loader.c:1720: Test failed: 0 != SEC_IMAGE loader.c:1734: Test failed: LoadLibrary error 193, is_dll 0 loader.c:1735: Test failed: mapped addresses should be different loader.c:1739: Test failed: FreeLibrary error 6 loader.c:1743: Test failed: NtUnmapViewOfSection error c0000019 loader.c:2296: Test failed: failed to load err 193 loader.c:2315: Test failed: failed to load err 193 loader.c:2333: Test failed: failed to load err 193 loader.c:2344: Test failed: failed to load err 193 loader.c:2931: Test failed: LoadLibrary error 193 loader.c:2954: Test failed: attached thread count should be 2 loader.c:2964: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:2966: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:3016: Test failed: DLL should not be unloaded loader.c:3037: Test failed: DLL should not be unloaded loader.c:3162: Test failed: expected WAIT_OBJECT_0, got 0xffffffff loader.c:3164: Test failed: expected WAIT_OBJECT_0, got 0xffffffff loader.c:2931: Test failed: LoadLibrary error 193 loader.c:2954: Test failed: attached thread count should be 2 loader.c:2964: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:2966: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:3155: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:3157: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:2931: Test failed: LoadLibrary error 193 loader.c:2954: Test failed: attached thread count should be 2 loader.c:2964: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:2966: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:3061: Test failed: FreeLibrary error 6 loader.c:3066: Test failed: FreeLibrary+ExitProcess should never return loader.c:3155: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:3157: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:3346: Test failed: expected exit code 197, got 195 loader.c:2931: Test failed: LoadLibrary error 193 loader.c:2954: Test failed: attached thread count should be 2 loader.c:2964: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:2966: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:3162: Test failed: expected WAIT_OBJECT_0, got 0xffffffff loader.c:3164: Test failed: expected WAIT_OBJECT_0, got 0xffffffff loader.c:2931: Test failed: LoadLibrary error 193 loader.c:2954: Test failed: attached thread count should be 2 loader.c:2964: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:2966: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:2931: Test failed: LoadLibrary error 193 loader.c:2954: Test failed: attached thread count should be 2 loader.c:2964: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:2966: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:2931: Test failed: LoadLibrary error 193 loader.c:2954: Test failed: attached thread count should be 2 loader.c:2964: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:2966: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:2931: Test failed: LoadLibrary error 193 loader.c:2954: Test failed: attached thread count should be 2 loader.c:2964: Test failed: expected WAIT_TIMEOUT, got 0xffffffff loader.c:2966: Test failed: expected WAIT_TIMEOUT, got 0xffffffff
Report validation errors: kernel32:loader prints too much data (460982 bytes)