This makes it possible to debug Wine application in GDB almost like any other Unix application. Split from https://gitlab.winehq.org/wine/wine/-/merge_requests/1074.
-- v2: ntdll: Maintain a PE module link map and expose it to GDB. loader: Expose a shadow copy of ld.so link map to GDB.
From: Rémi Bernon rbernon@codeweavers.com
To make sure gdb will unwind through it, and ignore that the syscall frame is inner its caller frame on the thread stack. --- dlls/ntdll/unix/signal_i386.c | 2 ++ dlls/ntdll/unix/signal_x86_64.c | 2 ++ 2 files changed, 4 insertions(+)
diff --git a/dlls/ntdll/unix/signal_i386.c b/dlls/ntdll/unix/signal_i386.c index d665e281176..23441273d0f 100644 --- a/dlls/ntdll/unix/signal_i386.c +++ b/dlls/ntdll/unix/signal_i386.c @@ -2537,6 +2537,7 @@ __ASM_GLOBAL_FUNC( signal_exit_thread, * __wine_syscall_dispatcher */ __ASM_GLOBAL_FUNC( __wine_syscall_dispatcher, + __ASM_CFI(".cfi_signal_frame\n\t") "movl %fs:0x1f8,%ecx\n\t" /* x86_thread_data()->syscall_frame */ "movw $0,0x02(%ecx)\n\t" /* frame->restore_flags */ "popl 0x08(%ecx)\n\t" /* frame->eip */ @@ -2727,6 +2728,7 @@ __ASM_GLOBAL_FUNC( __wine_syscall_dispatcher, * __wine_unix_call_dispatcher */ __ASM_GLOBAL_FUNC( __wine_unix_call_dispatcher, + __ASM_CFI(".cfi_signal_frame\n\t") "movl %fs:0x1f8,%ecx\n\t" /* x86_thread_data()->syscall_frame */ "movw $0,0x02(%ecx)\n\t" /* frame->restore_flags */ "popl 0x08(%ecx)\n\t" /* frame->eip */ diff --git a/dlls/ntdll/unix/signal_x86_64.c b/dlls/ntdll/unix/signal_x86_64.c index fa8660ca914..478ed731661 100644 --- a/dlls/ntdll/unix/signal_x86_64.c +++ b/dlls/ntdll/unix/signal_x86_64.c @@ -2628,6 +2628,7 @@ __ASM_GLOBAL_FUNC( signal_exit_thread, * __wine_syscall_dispatcher */ __ASM_GLOBAL_FUNC( __wine_syscall_dispatcher, + __ASM_CFI(".cfi_signal_frame\n\t") #ifdef __APPLE__ "movq %gs:0x30,%rcx\n\t" "movq 0x328(%rcx),%rcx\n\t" @@ -2850,6 +2851,7 @@ __ASM_GLOBAL_FUNC( __wine_syscall_dispatcher, * __wine_unix_call_dispatcher */ __ASM_GLOBAL_FUNC( __wine_unix_call_dispatcher, + __ASM_CFI(".cfi_signal_frame\n\t") "movq %rcx,%r10\n\t" #ifdef __APPLE__ "movq %gs:0x30,%rcx\n\t"
From: Rémi Bernon rbernon@codeweavers.com
Effectively supporting dynamically loaded libraries when running Wine under GDB without WINELOADERNOEXEC=1.
Credits to Jinoh Kang for the idea. --- loader/main.c | 88 +++++++++++++++++++++++++++++++++++++++++++++- loader/preloader.c | 15 ++++++++ 2 files changed, 102 insertions(+), 1 deletion(-)
diff --git a/loader/main.c b/loader/main.c index 242ff15accd..b7805473da8 100644 --- a/loader/main.c +++ b/loader/main.c @@ -33,13 +33,99 @@ #ifdef HAVE_SYS_SYSCTL_H # include <sys/sysctl.h> #endif +#ifdef HAVE_LINK_H +# include <link.h> +#endif +#ifdef HAVE_SYS_LINK_H +# include <sys/link.h> +#endif
#include "main.h"
extern char **environ;
-/* the preloader will set this variable */ +/* the preloader will set these variables */ const struct wine_preload_info *wine_main_preload_info = NULL; +void (*wine_dl_debug_state)(void) = NULL; +struct r_debug *wine_r_debug = NULL; + +#ifdef __linux__ + +static struct link_map so_link_map = {.l_name = (char *)""}; +static pthread_mutex_t link_map_lock = PTHREAD_MUTEX_INITIALIZER; + +static void sync_wine_link_map(void) +{ + static struct r_debug *_r_debug; + struct link_map *next = &so_link_map, *prev = NULL, **rtld_map, **wine_map; + + if (!_r_debug) _r_debug = dlsym( RTLD_NEXT, "_r_debug" ); + rtld_map = &_r_debug->r_map; + wine_map = &next; + + pthread_mutex_lock( &link_map_lock ); + + while (*rtld_map) + { + if (!*wine_map) + { + if (!(*wine_map = calloc( 1, sizeof(struct link_map) ))) break; + (*wine_map)->l_prev = prev; + } + + prev = *wine_map; + (*wine_map)->l_addr = (*rtld_map)->l_addr; + (*wine_map)->l_name = strdup( (*rtld_map)->l_name ); + (*wine_map)->l_ld = (*rtld_map)->l_ld; + rtld_map = &(*rtld_map)->l_next; + wine_map = &(*wine_map)->l_next; + } + + /* remove the remaining wine entries */ + next = *wine_map; + *wine_map = NULL; + + while (next) + { + struct link_map *prev = next; + wine_map = &next->l_next; + next = *wine_map; + *wine_map = NULL; + free( prev->l_name ); + free( prev ); + } + + pthread_mutex_unlock( &link_map_lock ); + + if (wine_r_debug) wine_r_debug->r_map = &so_link_map; + if (wine_dl_debug_state) wine_dl_debug_state(); +} + +void *dlopen( const char *file, int mode ) +{ + static typeof(dlopen) *rtld_dlopen; + void *ret; + + if (!rtld_dlopen) rtld_dlopen = dlsym( RTLD_NEXT, "dlopen" ); + ret = rtld_dlopen( file, mode ); + + sync_wine_link_map(); + return ret; +} + +int dlclose( void *handle ) +{ + static typeof(dlclose) *rtld_dlclose; + int ret; + + if (!rtld_dlclose) rtld_dlclose = dlsym( RTLD_NEXT, "dlclose" ); + ret = rtld_dlclose( handle ); + + sync_wine_link_map(); + return ret; +} + +#endif /* __linux__ */
/* canonicalize path and return its directory name */ static char *realpath_dirname( const char *name ) diff --git a/loader/preloader.c b/loader/preloader.c index 72556f09720..9fa00786281 100644 --- a/loader/preloader.c +++ b/loader/preloader.c @@ -1362,6 +1362,9 @@ static void set_process_name( int argc, char *argv[] ) for (i = 1; i < argc; i++) argv[i] -= off; }
+/* GDB hooks integration */ +struct r_debug _r_debug = {0}; +void _dl_debug_state(void) {}
/* * wld_start @@ -1378,6 +1381,8 @@ void* wld_start( void **stack ) struct wld_auxv new_av[8], delete_av[3], *av; struct wld_link_map main_binary_map, ld_so_map; struct wine_preload_info **wine_main_preload_info; + void (**wine_dl_debug_state)(void); + struct r_debug **wine_r_debug;
pargc = *stack; argv = (char **)pargc + 1; @@ -1450,6 +1455,16 @@ void* wld_start( void **stack ) if (wine_main_preload_info) *wine_main_preload_info = preload_info; else wld_printf( "wine_main_preload_info not found\n" );
+ /* provide r_debug to inform GDB of loaded modules */ + wine_r_debug = find_symbol( &main_binary_map, "wine_r_debug", STT_OBJECT ); + if (wine_r_debug) *wine_r_debug = &_r_debug; + else wld_printf( "wine_r_debug not found\n" ); + + /* provide _dl_debug_state callback to trigger GDB hooks */ + wine_dl_debug_state = find_symbol( &main_binary_map, "wine_dl_debug_state", STT_OBJECT ); + if (wine_dl_debug_state) *wine_dl_debug_state = _dl_debug_state; + else wld_printf( "wine_dl_debug_state not found\n" ); + #define SET_NEW_AV(n,type,val) new_av[n].a_type = (type); new_av[n].a_un.a_val = (val); SET_NEW_AV( 0, AT_PHDR, (unsigned long)main_binary_map.l_phdr ); SET_NEW_AV( 1, AT_PHENT, sizeof(ElfW(Phdr)) );
From: Rémi Bernon rbernon@codeweavers.com
--- dlls/ntdll/unix/loader.c | 26 +++++++++ dlls/ntdll/unix/virtual.c | 4 ++ loader/main.c | 113 +++++++++++++++++++++++++++++++++++++- 3 files changed, 140 insertions(+), 3 deletions(-)
diff --git a/dlls/ntdll/unix/loader.c b/dlls/ntdll/unix/loader.c index 7243be49489..c718acb5382 100644 --- a/dlls/ntdll/unix/loader.c +++ b/dlls/ntdll/unix/loader.c @@ -1439,6 +1439,30 @@ static inline char *prepend_build_dir_path( char *ptr, const char *ext, const ch }
+static void notify_gdb_dll_loaded( void *module, const char *unix_path ) +{ + static void (*wine_gdb_dll_loaded)( const void *module, const char *unix_path ); + if (!wine_gdb_dll_loaded) wine_gdb_dll_loaded = dlsym( RTLD_DEFAULT, "wine_gdb_dll_loaded" ); + if (wine_gdb_dll_loaded) wine_gdb_dll_loaded( module, unix_path ); +} + +static void notify_gdb_native_dll_loaded( void *module, UNICODE_STRING *nt_name ) +{ + OBJECT_ATTRIBUTES attr; + UNICODE_STRING redir; + char *unix_path; + + InitializeObjectAttributes( &attr, (void *)nt_name, OBJ_CASE_INSENSITIVE, 0, 0 ); + get_redirect( &attr, &redir ); + + if (!nt_to_unix_file_name( &attr, &unix_path, FILE_OPEN )) + notify_gdb_dll_loaded( module, unix_path ); + + free( redir.Buffer ); + free( unix_path ); +} + + /*********************************************************************** * open_dll_file * @@ -1489,6 +1513,7 @@ static NTSTATUS open_builtin_pe_file( const char *name, OBJECT_ATTRIBUTES *attr, { status = virtual_map_builtin_module( mapping, module, size, image_info, zero_bits, machine, prefer_native ); NtClose( mapping ); + if (!status) notify_gdb_dll_loaded( *module, name ); } return status; } @@ -1619,6 +1644,7 @@ static NTSTATUS find_builtin_dll( UNICODE_STRING *nt_name, void **module, SIZE_T
if (found_image) status = STATUS_IMAGE_MACHINE_TYPE_MISMATCH; WARN( "cannot find builtin library for %s\n", debugstr_us(nt_name) ); + notify_gdb_native_dll_loaded( *module, nt_name ); done: if (status >= 0 && ext) { diff --git a/dlls/ntdll/unix/virtual.c b/dlls/ntdll/unix/virtual.c index 2a00ac52811..75245885781 100644 --- a/dlls/ntdll/unix/virtual.c +++ b/dlls/ntdll/unix/virtual.c @@ -4774,6 +4774,10 @@ NTSTATUS WINAPI NtUnmapViewOfSection( HANDLE process, PVOID addr ) SERVER_END_REQ; if (!status) { + static void (*wine_gdb_dll_unload)( const void *module ); + if (!wine_gdb_dll_unload) wine_gdb_dll_unload = dlsym( RTLD_DEFAULT, "wine_gdb_dll_unload" ); + if (wine_gdb_dll_unload) wine_gdb_dll_unload( view->base ); + if (view->protect & SEC_IMAGE) release_builtin_module( view->base ); delete_view( view ); } diff --git a/loader/main.c b/loader/main.c index b7805473da8..adbe952e96c 100644 --- a/loader/main.c +++ b/loader/main.c @@ -20,6 +20,13 @@
#include "config.h"
+#include <stdarg.h> +#include <stddef.h> + +#include "windef.h" +#include "winbase.h" +#include "winnt.h" + #include <fcntl.h> #include <pthread.h> #include <stdio.h> @@ -40,6 +47,8 @@ # include <sys/link.h> #endif
+#include "wine/list.h" + #include "main.h"
extern char **environ; @@ -51,13 +60,23 @@ struct r_debug *wine_r_debug = NULL;
#ifdef __linux__
+struct link_map_entry +{ + struct link_map map; + const void *module; + struct list entry; +}; + +static struct list pe_link_map_entries = LIST_INIT( pe_link_map_entries ); +static struct link_map so_link_map; +static struct link_map pe_link_map = {.l_prev = &so_link_map, .l_name = (char *)""}; static struct link_map so_link_map = {.l_name = (char *)""}; static pthread_mutex_t link_map_lock = PTHREAD_MUTEX_INITIALIZER;
static void sync_wine_link_map(void) { static struct r_debug *_r_debug; - struct link_map *next = &so_link_map, *prev = NULL, **rtld_map, **wine_map; + struct link_map *next = &so_link_map, **rtld_map, **wine_map;
if (!_r_debug) _r_debug = dlsym( RTLD_NEXT, "_r_debug" ); rtld_map = &_r_debug->r_map; @@ -65,15 +84,18 @@ static void sync_wine_link_map(void)
pthread_mutex_lock( &link_map_lock );
+ /* unlink PE link map */ + pe_link_map.l_prev->l_next = NULL; + while (*rtld_map) { if (!*wine_map) { if (!(*wine_map = calloc( 1, sizeof(struct link_map) ))) break; - (*wine_map)->l_prev = prev; + (*wine_map)->l_prev = pe_link_map.l_prev; }
- prev = *wine_map; + pe_link_map.l_prev = *wine_map; (*wine_map)->l_addr = (*rtld_map)->l_addr; (*wine_map)->l_name = strdup( (*rtld_map)->l_name ); (*wine_map)->l_ld = (*rtld_map)->l_ld; @@ -95,12 +117,97 @@ static void sync_wine_link_map(void) free( prev ); }
+ /* link PE link map back */ + pe_link_map.l_prev->l_next = &pe_link_map; + pthread_mutex_unlock( &link_map_lock );
if (wine_r_debug) wine_r_debug->r_map = &so_link_map; if (wine_dl_debug_state) wine_dl_debug_state(); }
+static void add_dll_to_pe_link_map( const void *module, const char *unix_path ) +{ + const IMAGE_DOS_HEADER *dos = (const IMAGE_DOS_HEADER *)module; + const IMAGE_NT_HEADERS *nt = (IMAGE_NT_HEADERS *)((const BYTE *)dos + dos->e_lfanew); + struct link_map_entry *entry; + struct link_map *map_end; + struct list *tail; + + if (!(entry = calloc( 1, sizeof(*entry) ))) return; + + entry->module = module; + entry->map.l_addr = (char *)module - (char *)nt->OptionalHeader.ImageBase; + entry->map.l_name = strdup( unix_path ); + + if ((tail = list_tail( &pe_link_map_entries ))) + { + entry->map.l_prev = &LIST_ENTRY( tail, struct link_map_entry, entry )->map; + entry->map.l_prev->l_next = &entry->map; + } + else + { + map_end = &pe_link_map; + while (map_end->l_next) map_end = map_end->l_next; + + map_end->l_next = &entry->map; + map_end->l_next->l_prev = map_end; + } + + list_add_tail( &pe_link_map_entries, &entry->entry ); +} + +void wine_gdb_dll_loaded( const void *module, const char *unix_path ) +{ + struct link_map_entry *entry; + + pthread_mutex_lock( &link_map_lock ); + + LIST_FOR_EACH_ENTRY( entry, &pe_link_map_entries, struct link_map_entry, entry ) + if (entry->module == module) break; + + if (&entry->entry == &pe_link_map_entries) + add_dll_to_pe_link_map( module, unix_path ); + else + { + const IMAGE_DOS_HEADER *dos = (const IMAGE_DOS_HEADER *)module; + const IMAGE_NT_HEADERS *nt = (IMAGE_NT_HEADERS *)((const BYTE *)dos + dos->e_lfanew); + entry->map.l_addr = (char *)module - (char *)nt->OptionalHeader.ImageBase; + } + + pthread_mutex_unlock( &link_map_lock ); + + sync_wine_link_map(); +} + +void wine_gdb_dll_unload( const void *module ) +{ + struct link_map_entry *entry; + + pthread_mutex_lock( &link_map_lock ); + + LIST_FOR_EACH_ENTRY( entry, &pe_link_map_entries, struct link_map_entry, entry ) + if (entry->module == module) break; + + if (&entry->entry == &pe_link_map_entries) + { + pthread_mutex_unlock( &link_map_lock ); + return; + } + + list_remove( &entry->entry ); + + if (entry->map.l_prev) entry->map.l_prev->l_next = entry->map.l_next; + if (entry->map.l_next) entry->map.l_next->l_prev = entry->map.l_prev; + + pthread_mutex_unlock( &link_map_lock ); + + sync_wine_link_map(); + + free( entry->map.l_name ); + free( entry ); +} + void *dlopen( const char *file, int mode ) { static typeof(dlopen) *rtld_dlopen;
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=127193
Your paranoid android.
=== debian11 (32 bit report) ===
atl100: atl: Timeout
combase: roapi.c:89: Test failed: RoGetActivationFactory returned 0x800703e6. roapi: Timeout
dinput: force_feedback: Timeout hid.c:667: Test failed: failed to create device, error 0xe0000207 hid.c:670: Test failed: failed to create set hardware ID, error 87 hid.c:673: Test failed: failed to register device, error 87 hid: Timeout hid.c:667: Test failed: failed to create device, error 0xe0000207 hid.c:670: Test failed: failed to create set hardware ID, error 87 hid.c:673: Test failed: failed to register device, error 87 hotplug: Timeout hid.c:667: Test failed: failed to create device, error 0xe0000207 hid.c:670: Test failed: failed to create set hardware ID, error 87 hid.c:673: Test failed: failed to register device, error 87 joystick8: Timeout
ieframe: ie: Timeout webbrowser.c:1055: Test failed: unexpected dispIdMember 271 webbrowser.c:2869: Test failed: expected Invoke_AMBIENT_USERMODE webbrowser.c:2878: Test failed: expected GetHostInfo webbrowser.c:2879: Test failed: expected Invoke_AMBIENT_DLCONTROL webbrowser.c:2880: Test failed: expected Invoke_AMBIENT_USERAGENT webbrowser.c:2884: Test failed: expected GetOverridesKeyPath webbrowser.c:3451: Test failed: get_Document failed: 00000001 webbrowser.c:3451: Test failed: doc_disp == NULL Unhandled exception: page fault on read access to 0x00000000 in 32-bit code (0x00406210).
kernel32: actctx.c:3359: Test failed: LoadLibrary failed actctx.c:3362: Test failed: GetProcAddress failed actctx.c:3660: Test failed: Timed out waiting for the child process actctx.c:3660: Test failed: Timed out waiting for the child process actctx.c:580: Test failed: CreateFile failed: 32 actctx.c:3359: Test failed: LoadLibrary failed actctx.c:3362: Test failed: GetProcAddress failed actctx.c:3660: Test failed: Timed out waiting for the child process actctx.c:580: Test failed: CreateFile failed: 32 actctx: Timeout loader.c:1535: Test failed: loading failed err 998 loader.c:1537: Test failed: got wrong path C:\users\winetest\Temp\wct\kernel32_test.exe / C:\users\winetest\Temp\THIS~0TF.DLL loader: Timeout module.c:520: Test failed: LoadLibrary failed err 998 module: Timeout
mscoree: comtest.c:97: unhandled exception ffffffff in child process 0760 comtest.c:102: Test failed: Compilation failed comtest.c:105: Test failed: Moving temporary file failed comtest.c:97: unhandled exception ffffffff in child process 0794 comtest.c:102: Test failed: Compilation failed comtest.c:105: Test failed: Moving temporary file failed comtest.c:97: unhandled exception ffffffff in child process 074c comtest.c:102: Test failed: Compilation failed comtest.c:105: Test failed: Moving temporary file failed debugging: Timeout metahost.c:213: Test failed: GetInterface returned 80004005 Unhandled exception: page fault on read access to 0x00000008 in 32-bit code (0x00404451). mscoree.c:115: Test failed: ICLRRuntimeInfo::GetInterface failed, hr=0x80004005 mscoree: Timeout
mshtml: activex.c:2766: Test failed: Too old IE dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 dom.c:596: Test failed: CoCreateInstance failed: 80040111 events.c:5425: Test failed: CoCreateInstance failed: 80040111 events.c:5903: Test failed: Too old IE htmldoc.c:7656: Test failed: CoCreateInstance failed: 80040111 htmldoc.c:9166: Test failed: Too old IE htmllocation.c:308: Test failed: HTTP: CoCreateInstance failed: 0x80040111 htmllocation.c:308: Test failed: HTTP with file: CoCreateInstance failed: 0x80040111 htmllocation.c:308: Test failed: FTP: CoCreateInstance failed: 0x80040111 htmllocation.c:308: Test failed: FTP with file: CoCreateInstance failed: 0x80040111 misc.c:129: Test failed: CoCreateInstance failed: 0x80040111 Unhandled exception: page fault on read access to 0x00000000 in 32-bit code (0x00473b8e). script.c:1667: Test failed: CoCreateInstance failed: 80040111 script.c:4312: Test failed: Too old IE. style.c:3830: Test failed: CoCreateInstance failed: 80040111 xmlhttprequest.c:1097: Test failed: CoCreateInstance failed: 0x80040111 Unhandled exception: page fault on read access to 0x00000000 in 32-bit code (0x004aa5d7).
msi: action: Timeout automation.c:2630: Test failed: Installer_OpenDatabase failed, hresult 0x80020009 automation.c:2486: Test failed: Directory not created install.c:2578: Test failed: File not installed install.c:2579: Test failed: Directory not created install.c:2580: Test failed: File not installed install.c:2581: Test failed: Directory not created install.c:2582: Test failed: File not installed install.c:2583: Test failed: Directory not created install.c:2584: Test failed: File not installed install.c:2585: Test failed: Directory not created install.c:2586: Test failed: File not installed install.c:2587: Test failed: File not installed install.c:2588: Test failed: Directory not created install.c:2814: Test failed: Expected ERROR_SUCCESS, got 2 install.c:2819: Test failed: Expected ERROR_SUCCESS, got 6 install.c:2820: Test failed: Expected imaname, got &9�j install.c:2825: Test failed: Expected ERROR_FILE_NOT_FOUND, got 6 install.c:2830: Test failed: Expected ERROR_SUCCESS, got 6 install.c:2831: Test failed: Expected 314, got 4 install.c:2836: Test failed: Expected ERROR_SUCCESS, got 6 install.c:2837: Test failed: Expected OrderTestValue, got &9�j install.c:2588: Test failed: Directory not created install.c:2588: Test failed: Directory not created install.c:2588: Test failed: Directory not created install.c:2588: Test failed: Directory not created install.c:2588: Test failed: Directory not created install.c:2588: Test failed: Directory not created install.c:2588: Test failed: Directory not created install.c:2588: Test failed: Directory not created install.c:2588: Test failed: Directory not created install.c:4215: Test failed: Expected ERROR_INSTALL_USEREXIT, got 0 install.c:4222: Test failed: Expected ERROR_INSTALL_FAILURE, got 0 install: Timeout package: Timeout
msxml3: xmlview.c:161: Test failed: Failed to create XMLView instance xmlview.c:218: Test failed: Failed to create XMLView instance
ntoskrnl.exe: ntoskrnl.c:351: Test failed: StartService failed: 1114 ntoskrnl.c:362: Test failed: expected SERVICE_RUNNING, got 1 ntoskrnl.c:1930: Test failed: failed to open device: 2 ntoskrnl.c:421: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:422: Test failed: got size 1701472790 ntoskrnl.c:423: Test failed: got '0�g' ntoskrnl.c:428: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:429: Test failed: got size 1701472790 ntoskrnl.c:430: Test failed: got '' ntoskrnl.c:407: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:408: Test failed: got size 4254815 ntoskrnl.c:446: Test failed: failed to open device: 2 ntoskrnl.c:450: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:453: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:456: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:460: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:461: Test failed: cancel_cnt = 3735928559 ntoskrnl.c:467: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:468: Test failed: cancel_cnt = 3735928559 ntoskrnl.c:474: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:477: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:480: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:486: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:487: Test failed: cancel_cnt = 3735928559 ntoskrnl.c:493: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:494: Test failed: cancel_cnt = 3735928559 ntoskrnl.c:503: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:505: Test failed: GetQueuedCompletionStatus failed: 258 ntoskrnl.c:506: Test failed: o != overlapped ntoskrnl.c:511: Test failed: SetFileCompletionNotificationModes failed: 6 ntoskrnl.c:514: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:537: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:541: Test failed: got state 0x1 ntoskrnl.c:545: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:559: Test failed: ioctl failed: 6 ntoskrnl.c:560: Test failed: got 0 ntoskrnl.c:563: Test failed: ioctl failed: 6 ntoskrnl.c:564: Test failed: got 0 ntoskrnl.c:567: Test failed: failed to open device: 2 ntoskrnl.c:570: Test failed: ioctl failed: 6 ntoskrnl.c:571: Test failed: got 0 ntoskrnl.c:574: Test failed: failed to open device: 2 ntoskrnl.c:577: Test failed: ioctl failed: 6 ntoskrnl.c:578: Test failed: got 0 ntoskrnl.c:584: Test failed: ioctl failed: 6 ntoskrnl.c:585: Test failed: got 0 ntoskrnl.c:588: Test failed: ioctl failed: 6 ntoskrnl.c:589: Test failed: got 0 ntoskrnl.c:592: Test failed: ioctl failed: 6 ntoskrnl.c:593: Test failed: got 0 ntoskrnl.c:596: Test failed: ioctl failed: 6 ntoskrnl.c:597: Test failed: got 0 ntoskrnl.c:600: Test failed: ioctl failed: 6 ntoskrnl.c:601: Test failed: got 0 ntoskrnl.c:606: Test failed: ioctl failed: 6 ntoskrnl.c:607: Test failed: got 0 ntoskrnl.c:612: Test failed: ioctl failed: 6 ntoskrnl.c:613: Test failed: got 0 ntoskrnl.c:618: Test failed: ioctl failed: 6 ntoskrnl.c:619: Test failed: got 0 ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000000, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000000, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000103, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000103, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000102, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x00000102, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x0eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x4eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x80000005, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x80000005, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0x8eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 0: got 0 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got 0 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got 0 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0xc0000002, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 0: got 0 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got 0 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got 0 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000000, iosb 0xceadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x00000000, pending 1, method 3: got 0 APC calls ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 0: got 0 APC calls ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 2: got 0 APC calls ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x00000103, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x00000102, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x0eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x4eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x80000005, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0x8eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0xc0000002, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000103, iosb 0xceadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000000, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000000, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000103, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000103, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000102, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x00000102, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x0eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x4eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x80000005, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x80000005, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0x8eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 0: got 0 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got 0 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got 0 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0xc0000002, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 0: got 0 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got 0 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got 0 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x00000102, iosb 0xceadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000000, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000103, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x00000102, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x80000005, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 0: got 0 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got 0 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got 0 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0xc0000002, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x0eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000000, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000103, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x00000102, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x80000005, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 0: got 0 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got 0 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got 0 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0xc0000002, pending 1, method 3: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:667: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0 ntoskrnl.c:671: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x4eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000000, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000000, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000103, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000103, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000102, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x00000102, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x0eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x4eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x80000005, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x80000005, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0x8eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 0: got 0 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: got 0 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: got 0 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0xc0000002, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 0: got 0 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: got 0 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: got 0 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x80000005, iosb 0xceadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000000, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000103, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x00000102, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x80000005, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:680: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 0: got 0 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: got 0 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: got 0 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0xc0000002, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0x8eadbeef, iosb 0xceadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000000, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000000, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000103, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000103, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000102, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x00000102, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x0eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x4eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x80000005, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x80000005, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0x8eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 0: got 0 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: got 0 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: got 0 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0xc0000002, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 0: got 0 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: got 0 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: got 0 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xc0000002, iosb 0xceadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000000, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000000, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000103, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000103, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000102, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x00000102, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x0eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x4eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x80000005, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x80000005, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 0, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:697: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:698: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0x8eadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 0: got 0 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 0: got 0xc0000008 ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: got 0 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 2: got buffer abcdef ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: got 0 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 0, method 3: got buffer abcdef ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0xc0000002, pending 1, method 3: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 0: got 0 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 0: got 0xc0000008 ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: got 0 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 2: got buffer abcdef ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:834: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: got 0 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: got 0xc0000008 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 0, method 3: got buffer abcdef ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 258 ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got size 3735941133 ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 0: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 2: got 0 APC calls ntoskrnl.c:675: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:682: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:689: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:700: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:706: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:711: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:719: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:731: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:732: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:734: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:736: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:751: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:752: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got key 3735941133 ntoskrnl.c:753: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got value 3735941133 ntoskrnl.c:754: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got iosb status 0xcccccccc ntoskrnl.c:755: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got information 3435973836 ntoskrnl.c:766: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:778: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:779: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:781: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:783: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:794: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:806: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:807: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:809: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 258 ntoskrnl.c:811: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:818: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got error 6 ntoskrnl.c:826: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:838: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:839: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:843: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:863: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 0x102 ntoskrnl.c:885: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: failed to open device, error 2 ntoskrnl.c:892: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xc0000008 ntoskrnl.c:900: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 0xdeadf00d ntoskrnl.c:901: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got size 3735941133 ntoskrnl.c:903: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got buffer abcdef ntoskrnl.c:913: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 0 ntoskrnl.c:914: Test failed: return 0xceadbeef, iosb 0xceadbeef, pending 1, method 3: got 0 APC calls ntoskrnl.c:990: Test failed: wrong name (null) ntoskrnl.c:995: Test failed: wrong name L"Process" ntoskrnl.c:1115: Test failed: failed to open device: 3 ntoskrnl.c:1119: Test failed: got 0xc0000024 ntoskrnl.c:1120: Test failed: got iosb status 0xc0000024 ntoskrnl.c:1121: Test failed: got information 0xcccccccc ntoskrnl.c:1126: Test failed: got 0xc0000024 ntoskrnl.c:1127: Test failed: got iosb status 0xc0000024 ntoskrnl.c:1133: Test failed: failed to open device: 3 ntoskrnl.c:1137: Test failed: got 0xc0000024 ntoskrnl.c:1138: Test failed: got iosb status 0xc0000024 ntoskrnl.c:1139: Test failed: got information 0xcccccccc ntoskrnl.c:1143: Test failed: got 0xc0000024 ntoskrnl.c:1144: Test failed: got iosb status 0xc0000024 ntoskrnl.c:1145: Test failed: got information 0xcccccccc ntoskrnl.c:1947: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:1161: Test failed: got 1114 ntoskrnl.c:351: Test failed: StartService failed: 1114 ntoskrnl.c:362: Test failed: expected SERVICE_RUNNING, got 1 ntoskrnl.c:1247: Test failed: failed to open device: 2 ntoskrnl.c:407: Test failed: DeviceIoControl failed: 6 ntoskrnl.c:408: Test failed: got size 1367432 ntoskrnl: Timeout
ole32: compobj.c:807: Test failed: Unexpected hr 0x80070005. compobj: Timeout
setupapi: devinst: Timeout install.c:2171: Test failed: Got error 2. install: Timeout
ucrtbase: thread.c:89: Test failed: Failed to load the test dll: 998 thread.c:65: Test failed: Failed to get set_detach_event: 127 Unhandled exception: page fault on execute access to 0x00000000 in 32-bit code (0x00000000).
urlmon: url.c:1846: Test failed: binding failed: 800c0010, expected 00000000 url.c:1877: Test failed: incorrect protocol CLSID: {00000000-0000-0000-0000-000000000000}, expected CLSID_HttpProtocol url.c:3457: Test failed: IMoniker_BindToStorage failed: 800c0010 url.c:3458: Test failed: unk == NULL url.c:3537: Test failed: mon should be destroyed here
wbemprox: query: Timeout
wintrust: crypt.c:819: Test succeeded inside todo block: Expected the catalog file to exist Unhandled exception: page fault on read access to 0x00000000 in 32-bit code (0x6388964b).
Report validation errors: ntoskrnl.exe:ntoskrnl prints too much data (1843349 bytes)
=== debian11b (build log) ===
Task: WineTest did not produce the wow64 report
Completely forgot about the macOS build failures. I added a couple of `ifdef __linux__` to fix it.