-- v3: server: Check for zero access in alloc_handle(). server: Skip inaccessible threads in (get_next_thread). ntoskrnl.exe/tests: Open directory object with nonzero access in test_permanent().
From: Paul Gofman pgofman@codeweavers.com
--- dlls/ntoskrnl.exe/tests/driver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/ntoskrnl.exe/tests/driver.c b/dlls/ntoskrnl.exe/tests/driver.c index f82e34fca3b..7194dc403d7 100644 --- a/dlls/ntoskrnl.exe/tests/driver.c +++ b/dlls/ntoskrnl.exe/tests/driver.c @@ -2289,7 +2289,7 @@ static void test_permanence(void) ok(!status, "got %#lx\n", status);
attr.Attributes = 0; - status = ZwOpenDirectoryObject( &handle, 0, &attr ); + status = ZwOpenDirectoryObject( &handle, DIRECTORY_ALL_ACCESS, &attr ); ok(!status, "got %#lx\n", status); status = ZwMakeTemporaryObject( handle ); todo_wine @@ -2307,7 +2307,7 @@ static void test_permanence(void) todo_wine ok(!status, "got %#lx\n", status); attr.Attributes = OBJ_PERMANENT; - status = ZwOpenDirectoryObject( &handle2, 0, &attr ); + status = ZwOpenDirectoryObject( &handle2, DIRECTORY_ALL_ACCESS, &attr ); ok(status == STATUS_SUCCESS, "got %#lx\n", status); status = ZwClose( handle2 ); ok(!status, "got %#lx\n", status);
From: Paul Gofman pgofman@codeweavers.com
--- server/thread.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/server/thread.c b/server/thread.c index b3ce5d9ac95..b83bd9231f4 100644 --- a/server/thread.c +++ b/server/thread.c @@ -2026,8 +2026,12 @@ DECL_HANDLER(get_next_thread) if (thread->process == process) { reply->handle = alloc_handle( current->process, thread, req->access, req->attributes ); - release_object( process ); - return; + if (get_error() != STATUS_ACCESS_DENIED) + { + release_object( process ); + return; + } + clear_error(); } ptr = req->flags ? list_prev( &thread_list, &thread->entry ) : list_next( &thread_list, &thread->entry );
From: Paul Gofman pgofman@codeweavers.com
--- dlls/advapi32/tests/security.c | 4 -- dlls/kernel32/tests/sync.c | 2 - dlls/ntdll/tests/om.c | 76 +++++++++++++++++----------------- server/device.c | 2 +- server/handle.c | 7 +++- 5 files changed, 45 insertions(+), 46 deletions(-)
diff --git a/dlls/advapi32/tests/security.c b/dlls/advapi32/tests/security.c index e215ab9e5f2..56b10cee97f 100644 --- a/dlls/advapi32/tests/security.c +++ b/dlls/advapi32/tests/security.c @@ -5542,9 +5542,7 @@ static void test_mutex_security(HANDLE token)
SetLastError(0xdeadbeef); dup = OpenMutexA(0, FALSE, "WineTestMutex"); - todo_wine ok(!dup, "OpenMutex should fail\n"); - todo_wine ok(GetLastError() == ERROR_ACCESS_DENIED, "wrong error %lu\n", GetLastError()); }
@@ -5599,9 +5597,7 @@ static void test_event_security(HANDLE token)
SetLastError(0xdeadbeef); dup = OpenEventA(0, FALSE, "WineTestEvent"); - todo_wine ok(!dup, "OpenEvent should fail\n"); - todo_wine ok(GetLastError() == ERROR_ACCESS_DENIED, "wrong error %lu\n", GetLastError()); }
diff --git a/dlls/kernel32/tests/sync.c b/dlls/kernel32/tests/sync.c index 49420e4519f..b722f38a1a7 100644 --- a/dlls/kernel32/tests/sync.c +++ b/dlls/kernel32/tests/sync.c @@ -248,9 +248,7 @@ static void test_mutex(void)
SetLastError(0xdeadbeef); hOpened = OpenMutexA(0, FALSE, "WineTestMutex"); - todo_wine ok(hOpened == NULL, "OpenMutex succeeded\n"); - todo_wine ok(GetLastError() == ERROR_ACCESS_DENIED, "wrong error %lu\n", GetLastError());
SetLastError(0xdeadbeef); diff --git a/dlls/ntdll/tests/om.c b/dlls/ntdll/tests/om.c index cbc4ad27921..953b1458555 100644 --- a/dlls/ntdll/tests/om.c +++ b/dlls/ntdll/tests/om.c @@ -3410,17 +3410,17 @@ static void test_zero_access(void) ok( status == STATUS_OBJECT_NAME_EXISTS, "got %#lx.\n", status ); CloseHandle( h2 ); status = pNtCreateEvent( &h2, 0, &attr, NotificationEvent, FALSE ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); status = pNtOpenEvent( &h2, EVENT_ALL_ACCESS, &attr ); ok( !status, "got %#lx.\n", status ); CloseHandle( h2 ); status = pNtOpenEvent( &h2, 0, &attr ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); InitializeObjectAttributes( &attr, &str, OBJ_INHERIT, 0, NULL ); status = pNtOpenEvent( &h2, 0, &attr ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 );
status = pNtDuplicateObject( GetCurrentProcess(), h1, GetCurrentProcess(), &h2, 0, 0, 0 ); @@ -3443,10 +3443,10 @@ static void test_zero_access(void) ok( status == STATUS_OBJECT_NAME_EXISTS, "got %#lx.\n", status ); CloseHandle( h2 ); status = pNtCreateMutant( &h2, 0, &attr, FALSE ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); status = pNtOpenMutant( &h2, 0, &attr ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); CloseHandle( h1 );
@@ -3461,10 +3461,10 @@ static void test_zero_access(void) ok( status == STATUS_OBJECT_NAME_EXISTS, "got %#lx.\n", status ); CloseHandle( h2 ); status = pNtCreateSemaphore( &h2, 0, &attr, 1, 2 ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); status = pNtOpenSemaphore( &h2, 0, &attr ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); CloseHandle( h1 );
@@ -3479,10 +3479,10 @@ static void test_zero_access(void) ok( status == STATUS_OBJECT_NAME_EXISTS, "got %#lx.\n", status ); CloseHandle( h2 ); status = pNtCreateKeyedEvent( &h2, 0, &attr, 0 ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); status = pNtOpenKeyedEvent( &h2, 0, &attr ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); CloseHandle( h1 );
@@ -3497,10 +3497,10 @@ static void test_zero_access(void) ok( status == STATUS_OBJECT_NAME_EXISTS, "got %#lx.\n", status ); CloseHandle( h2 ); status = pNtCreateIoCompletion( &h2, 0, &attr, 0 ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); status = pNtOpenIoCompletion( &h2, 0, &attr ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); CloseHandle( h1 );
@@ -3516,10 +3516,10 @@ static void test_zero_access(void) "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); status = pNtCreateJobObject( &h2, 0, &attr ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); status = pNtOpenJobObject( &h2, 0, &attr ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); CloseHandle( h1 );
@@ -3534,10 +3534,10 @@ static void test_zero_access(void) ok( status == STATUS_OBJECT_NAME_EXISTS, "got %#lx.\n", status ); CloseHandle( h2 ); status = pNtCreateDirectoryObject( &h2, 0, &attr ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); status = pNtOpenDirectoryObject( &h2, 0, &attr ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); CloseHandle( h1 );
@@ -3552,10 +3552,10 @@ static void test_zero_access(void) ok( status == STATUS_OBJECT_NAME_EXISTS, "got %#lx.\n", status ); CloseHandle( h2 ); status = pNtCreateTimer( &h2, 0, &attr, NotificationTimer ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); status = pNtOpenTimer( &h2, 0, &attr ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); CloseHandle( h1 );
@@ -3571,10 +3571,10 @@ static void test_zero_access(void) "got %#lx.\n", status ); CloseHandle( h2 ); status = pNtCreateSymbolicLinkObject( &h2, 0, &attr, &target ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); status = pNtOpenSymbolicLinkObject( &h2, 0, &attr ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); CloseHandle( h1 );
@@ -3589,10 +3589,10 @@ static void test_zero_access(void) ok( status == STATUS_OBJECT_NAME_EXISTS, "got %#lx.\n", status ); CloseHandle( h2 ); status = pNtCreateSection( &h2, 0, &attr, &size, PAGE_READWRITE, SEC_COMMIT, 0 ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); status = pNtOpenSection( &h2, 0, &attr ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); CloseHandle( h1 );
@@ -3605,7 +3605,7 @@ static void test_zero_access(void) ok( status == STATUS_OBJECT_NAME_EXISTS, "got %#lx.\n", status ); CloseHandle( h2 ); status = pNtCreateDebugObject( &h2, 0, &attr, 0 ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h2 ); CloseHandle( h1 );
@@ -3616,7 +3616,7 @@ static void test_zero_access(void) CloseHandle( h1 ); status = NtCreateFile( &h1, 0, &attr, &iosb, NULL, 0, FILE_SHARE_READ | FILE_SHARE_WRITE, FILE_OPEN, 0, NULL, 0 ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h1 );
pRtlInitUnicodeString( &str, L"\??\c:\windows\system32\ntdll.dll" ); @@ -3626,12 +3626,12 @@ static void test_zero_access(void) CloseHandle( h1 ); status = NtCreateFile( &h1, 0, &attr, &iosb, NULL, 0, FILE_SHARE_READ | FILE_SHARE_WRITE, FILE_OPEN, 0, NULL, 0 ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h1 );
pRtlInitUnicodeString( &str, L"\Device\MailSlot\abc" ); status = pNtCreateMailslotFile( &h1, 0, &attr, &iosb, 0, 0, 0, NULL ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h1 ); status = pNtCreateMailslotFile( &h1, GENERIC_ALL, &attr, &iosb, 0, 0, 0, NULL ); ok( !status, "got %#lx.\n", status ); @@ -3645,7 +3645,7 @@ static void test_zero_access(void) status = pNtCreateNamedPipeFile( &h1, 0, &attr, &iosb, FILE_SHARE_READ | FILE_SHARE_WRITE, FILE_CREATE, FILE_PIPE_FULL_DUPLEX, FALSE, FALSE, FALSE, 1, 256, 256, &timeout ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h1 ); status = pNtCreateNamedPipeFile( &h1, GENERIC_READ | GENERIC_WRITE, &attr, &iosb, FILE_SHARE_READ | FILE_SHARE_WRITE, FILE_CREATE, @@ -3664,7 +3664,7 @@ static void test_zero_access(void)
pRtlInitUnicodeString( &str, L"\REGISTRY\Machine" ); status = pNtCreateKey( &h1, 0, &attr, 0, 0, 0, 0 ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h1 ); status = pNtCreateKey( &h1, KEY_READ, &attr, 0, 0, 0, 0 ); ok( !status, "got %#lx.\n", status ); @@ -3673,7 +3673,7 @@ static void test_zero_access(void) ok( !status, "got %#lx.\n", status ); CloseHandle( h1 ); status = pNtOpenKey( &h1, 0, &attr ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h1 );
pRtlInitUnicodeString( &str, L"\REGISTRY\Machine\Software\foobar-test" ); @@ -3697,25 +3697,25 @@ static void test_zero_access(void) ok( !status, "got %#lx.\n", status ); CloseHandle( h1 ); status = pNtOpenProcessToken( GetCurrentProcess(), 0, &h1 ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h1 );
status = NtGetNextThread(GetCurrentProcess(), NULL, 0, 0, 0, &h1); - todo_wine ok( status == STATUS_NO_MORE_ENTRIES, "got %#lx.\n", status ); + ok( status == STATUS_NO_MORE_ENTRIES, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h1 );
InitializeObjectAttributes( &attr, NULL, 0, 0, NULL ); cid.UniqueProcess = ULongToHandle( GetCurrentProcessId() ); cid.UniqueThread = 0; status = pNtOpenProcess( &h1, 0, &attr, &cid ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h1 );
InitializeObjectAttributes( &attr, NULL, 0, 0, NULL ); cid.UniqueProcess = 0; cid.UniqueThread = ULongToHandle( GetCurrentThreadId() ); status = pNtOpenThread( &h1, 0, &attr, &cid ); - todo_wine ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); + ok( status == STATUS_ACCESS_DENIED, "got %#lx.\n", status ); if (NT_SUCCESS(status)) CloseHandle( h1 );
h1 = CreateWindowStationA( "WinSta0", 0, WINSTA_ALL_ACCESS, NULL ); @@ -3728,8 +3728,8 @@ static void test_zero_access(void) CloseWindowStation( h1 ); h1 = CreateWindowStationA( "WinSta0", 0, 0, NULL ); err = GetLastError(); - todo_wine ok( !h1, "CreateWindowStationA succeeded\n" ); - todo_wine ok( err == ERROR_ACCESS_DENIED, "CreateWindowStationA failed %lu\n", err ); + ok( !h1, "CreateWindowStationA succeeded\n" ); + ok( err == ERROR_ACCESS_DENIED, "CreateWindowStationA failed %lu\n", err ); if (h1) CloseWindowStation( h1 ); } else if (err == ERROR_ACCESS_DENIED) win_skip( "Not enough privileges for CreateWindowStation\n" ); @@ -3739,8 +3739,8 @@ static void test_zero_access(void) CloseWindowStation( h1 ); h1 = OpenWindowStationA( "WinSta0", TRUE, 0 ); err = GetLastError(); - todo_wine ok( !h1, "OpenWindowStation succeeeded\n" ); - todo_wine ok( err == ERROR_ACCESS_DENIED, "OpenWindowStation failed %lu\n", err ); + ok( !h1, "OpenWindowStation succeeeded\n" ); + ok( err == ERROR_ACCESS_DENIED, "OpenWindowStation failed %lu\n", err ); if (h1) CloseWindowStation( h1 );
h1 = CreateDesktopA( "default", NULL, NULL, 0, DESKTOP_ALL_ACCESS, NULL ); @@ -3749,8 +3749,8 @@ static void test_zero_access(void) SetLastError( 0xdeadbeef ); h1 = CreateDesktopA( "default", NULL, NULL, 0, 0, NULL ); err = GetLastError(); - todo_wine ok( !h1, "CreateDesktopA succeeded\n" ); - todo_wine ok( err == ERROR_ACCESS_DENIED, "CreateDesktopA failed %lu\n", err ); + ok( !h1, "CreateDesktopA succeeded\n" ); + ok( err == ERROR_ACCESS_DENIED, "CreateDesktopA failed %lu\n", err ); if (h1) CloseDesktop( h1 );
h1 = OpenDesktopA( "default", 0, TRUE, DESKTOP_ALL_ACCESS ); diff --git a/server/device.c b/server/device.c index cab09700d8c..ecfc058bc91 100644 --- a/server/device.c +++ b/server/device.c @@ -1003,7 +1003,7 @@ DECL_HANDLER(get_next_device_request)
if (iosb && iosb->in_size > get_reply_max_size()) set_error( STATUS_BUFFER_OVERFLOW ); - else if (!irp->file || (reply->next = alloc_handle( current->process, irp, 0, 0 ))) + else if (!irp->file || (reply->next = alloc_handle_no_access_check( current->process, irp, 0, 0 ))) { if (fill_irp_params( manager, irp, &reply->params )) { diff --git a/server/handle.c b/server/handle.c index e65831b3b22..b7e9cf80121 100644 --- a/server/handle.c +++ b/server/handle.c @@ -284,7 +284,12 @@ obj_handle_t alloc_handle( struct process *process, void *ptr, unsigned int acce { struct object *obj = ptr; access = obj->ops->map_access( obj, access ) & ~RESERVED_ALL; - if (access && !check_object_access( NULL, obj, &access )) return 0; + if (!access) + { + set_error( STATUS_ACCESS_DENIED ); + return 0; + } + if (!check_object_access( NULL, obj, &access )) return 0; return alloc_handle_entry( process, ptr, access, attr ); }
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=150285
Your paranoid android.
=== w10pro64_ar (64 bit report) ===
kernel32: 23b4:sync: unhandled exception c00000fd at 00007FFA09612F57
=== w7u_2qxl (32 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w7u_adm (32 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w7u_el (32 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w8 (32 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w8adm (32 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w864 (32 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w1064v1507 (32 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w1064v1809 (32 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w1064_tsign (32 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w10pro64 (32 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w10pro64_en_AE_u8 (32 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w11pro64 (32 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w7pro64 (64 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w864 (64 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w1064v1507 (64 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w1064v1809 (64 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w1064_2qxl (64 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w1064_adm (64 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w1064_tsign (64 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w10pro64 (64 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w10pro64_ar (64 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w10pro64_ja (64 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w10pro64_zh_CN (64 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== w11pro64_amd (64 bit report) ===
ntoskrnl.exe: Fatal: test 'driver' does not exist.
=== debian11 (32 bit report) ===
kernel32: sync.c:290: Test succeeded inside todo block: wrong error 5, , access 4000000 sync.c:290: Test succeeded inside todo block: wrong error 5, , access 8000000
=== debian11 (32 bit ar:MA report) ===
kernel32: sync.c:290: Test succeeded inside todo block: wrong error 5, , access 4000000 sync.c:290: Test succeeded inside todo block: wrong error 5, , access 8000000
=== debian11 (32 bit de report) ===
kernel32: sync.c:290: Test succeeded inside todo block: wrong error 5, , access 4000000 sync.c:290: Test succeeded inside todo block: wrong error 5, , access 8000000
=== debian11 (32 bit fr report) ===
kernel32: sync.c:290: Test succeeded inside todo block: wrong error 5, , access 4000000 sync.c:290: Test succeeded inside todo block: wrong error 5, , access 8000000
=== debian11 (32 bit he:IL report) ===
kernel32: sync.c:290: Test succeeded inside todo block: wrong error 5, , access 4000000 sync.c:290: Test succeeded inside todo block: wrong error 5, , access 8000000
=== debian11 (32 bit hi:IN report) ===
kernel32: sync.c:290: Test succeeded inside todo block: wrong error 5, , access 4000000 sync.c:290: Test succeeded inside todo block: wrong error 5, , access 8000000
=== debian11 (32 bit ja:JP report) ===
kernel32: sync.c:290: Test succeeded inside todo block: wrong error 5, , access 4000000 sync.c:290: Test succeeded inside todo block: wrong error 5, , access 8000000
=== debian11 (32 bit zh:CN report) ===
kernel32: sync.c:290: Test succeeded inside todo block: wrong error 5, , access 4000000 sync.c:290: Test succeeded inside todo block: wrong error 5, , access 8000000
=== debian11b (32 bit WoW report) ===
kernel32: sync.c:290: Test succeeded inside todo block: wrong error 5, , access 4000000 sync.c:290: Test succeeded inside todo block: wrong error 5, , access 8000000
=== debian11b (64 bit WoW report) ===
amstream: amstream.c:469: Test failed: Got hr 0x80040217. amstream.c:539: Test failed: Got hr 0x80040217. amstream.c:541: Test failed: Got hr 0x80004002, expected 0. amstream.c:573: Test failed: Got hr 0x80040217. amstream.c:578: Test failed: Got state 0. amstream.c:596: Test failed: Got hr 0x80040217. amstream.c:603: Test failed: Got clock 00000000011D4970. amstream.c:635: Test failed: Got hr 0x80040217. amstream.c:641: Test failed: Got hr 0x1. amstream.c:642: Test failed: Got duration 0.
cmd.exe: batch.c:348: Test failed: unexpected char 0x66 position 0 in line 1787 (got 'footype=cmd.exe /c "echo '%*'"', wanted ''@drive@@path@foobar\test.foo'@or_broken@Skipped as not enough permissions') batch.c:348: Test failed: unexpected char 0x62 position 3 in line 1788 (got 'foobar', wanted 'footype=cmd.exe /c "echo '%*'"') batch.c:348: Test failed: unexpected char 0x2d position 0 in line 1790 (got '--- resetting association', wanted 'foobar@or_broken@Skipped as not enough permissions')
devenum: devenum.c:63: Test failed: Got hr 0x80070005. devenum.c:70: Test failed: Got hr 0x80070005. devenum.c:63: Test failed: Got hr 0x80070005. devenum.c:70: Test failed: Got hr 0x80070005. devenum.c:63: Test failed: Got hr 0x80070005. devenum.c:70: Test failed: Got hr 0x80070005. devenum.c:63: Test failed: Got hr 0x80070005. devenum.c:70: Test failed: Got hr 0x80070005. devenum.c:63: Test failed: Got hr 0x80070005. devenum.c:70: Test failed: Got hr 0x80070005. devenum.c:63: Test failed: Got hr 0x80070005. devenum.c:70: Test failed: Got hr 0x80070005. devenum.c:63: Test failed: Got hr 0x80070005. devenum.c:70: Test failed: Got hr 0x80070005. devenum.c:63: Test failed: Got hr 0x80070005. devenum.c:70: Test failed: Got hr 0x80070005. devenum.c:63: Test failed: Got hr 0x80070005. devenum.c:70: Test failed: Got hr 0x80070005. devenum.c:186: Test failed: Got hr 0x1.
dinput: hid.c:744: Test failed: mouse : CreateFile failed, error 2 hid.c:746: Test failed: mouse : IOCTL_WINETEST_CREATE_DEVICE failed, last error 6 hid.c:750: Test failed: mouse : WaitForSingleObject returned 0x102 hid.c:720: Test failed: mouse : CreateFile failed, error 2 hid.c:722: Test failed: mouse : IOCTL_WINETEST_REMOVE_DEVICE failed, last error 6 hid.c:744: Test failed: keyboard: CreateFile failed, error 2 hid.c:746: Test failed: keyboard: IOCTL_WINETEST_CREATE_DEVICE failed, last error 6 hid.c:750: Test failed: keyboard: WaitForSingleObject returned 0x102 hid.c:720: Test failed: keyboard: CreateFile failed, error 2 hid.c:722: Test failed: keyboard: IOCTL_WINETEST_REMOVE_DEVICE failed, last error 6 hid.c:744: Test failed: CreateFile failed, error 2 hid.c:746: Test failed: IOCTL_WINETEST_CREATE_DEVICE failed, last error 6 hid.c:750: Test failed: WaitForSingleObject returned 0x102 hid.c:720: Test failed: CreateFile failed, error 2 hid.c:722: Test failed: IOCTL_WINETEST_REMOVE_DEVICE failed, last error 6 hid.c:744: Test failed: 0x800: CreateFile failed, error 2 hid.c:746: Test failed: 0x800: IOCTL_WINETEST_CREATE_DEVICE failed, last error 6 hid.c:750: Test failed: 0x800: WaitForSingleObject returned 0x102 hid.c:720: Test failed: 0x800: CreateFile failed, error 2 hid.c:722: Test failed: 0x800: IOCTL_WINETEST_REMOVE_DEVICE failed, last error 6 hid.c:3851: Test failed: CreateFile failed, error 2 hid.c:3867: Test failed: CreateFile failed, error 2 hid.c:3869: Test failed: IOCTL_WINETEST_CREATE_DEVICE failed, last error 6 hid.c:3872: Test failed: WaitForSingleObject returned 0x102 hid.c:3874: Test failed: WaitForSingleObject returned 0x102 hid.c:3878: Test failed: Failed to find HID device matching L"\\?\hid#vid_1209&pid_0001" hid.c:3881: Test failed: IOCTL_WINETEST_REMOVE_DEVICE failed, last error 6 hid.c:3885: Test failed: WaitForSingleObject returned 0x102 hid.c:3887: Test failed: WaitForSingleObject returned 0x102 hid.c:744: Test failed: CreateFile failed, error 2 hid.c:746: Test failed: IOCTL_WINETEST_CREATE_DEVICE failed, last error 6 hid.c:750: Test failed: WaitForSingleObject returned 0x102 hid.c:720: Test failed: CreateFile failed, error 2 hid.c:722: Test failed: IOCTL_WINETEST_REMOVE_DEVICE failed, last error 6 hid.c:744: Test failed: CreateFile failed, error 2 hid.c:746: Test failed: IOCTL_WINETEST_CREATE_DEVICE failed, last error 6 hid.c:750: Test failed: WaitForSingleObject returned 0x102 hid.c:720: Test failed: CreateFile failed, error 2 hid.c:722: Test failed: IOCTL_WINETEST_REMOVE_DEVICE failed, last error 6 hid.c:744: Test failed: CreateFile failed, error 2 hid.c:746: Test failed: IOCTL_WINETEST_CREATE_DEVICE failed, last error 6 hid.c:750: Test failed: WaitForSingleObject returned 0x102 hid.c:720: Test failed: CreateFile failed, error 2 hid.c:722: Test failed: IOCTL_WINETEST_REMOVE_DEVICE failed, last error 6 hid.c:744: Test failed: CreateFile failed, error 2 hid.c:746: Test failed: IOCTL_WINETEST_CREATE_DEVICE failed, last error 6 hid.c:750: Test failed: WaitForSingleObject returned 0x102 hid.c:720: Test failed: CreateFile failed, error 2 hid.c:722: Test failed: IOCTL_WINETEST_REMOVE_DEVICE failed, last error 6 hid.c:744: Test failed: CreateFile failed, error 2 hid.c:746: Test failed: IOCTL_WINETEST_CREATE_DEVICE failed, last error 6 hid.c:750: Test failed: WaitForSingleObject returned 0x102 hid.c:720: Test failed: CreateFile failed, error 2 hid.c:722: Test failed: IOCTL_WINETEST_REMOVE_DEVICE failed, last error 6 hid.c:744: Test failed: CreateFile failed, error 2 hid.c:746: Test failed: IOCTL_WINETEST_CREATE_DEVICE failed, last error 6 hid.c:750: Test failed: WaitForSingleObject returned 0x102 hid.c:720: Test failed: CreateFile failed, error 2 hid.c:722: Test failed: IOCTL_WINETEST_REMOVE_DEVICE failed, last error 6 hid.c:744: Test failed: 0x500: CreateFile failed, error 2 hid.c:746: Test failed: 0x500: IOCTL_WINETEST_CREATE_DEVICE failed, last error 6 hid.c:750: Test failed: 0x500: WaitForSingleObject returned 0x102 hid.c:720: Test failed: 0x500: CreateFile failed, error 2 hid.c:722: Test failed: 0x500: IOCTL_WINETEST_REMOVE_DEVICE failed, last error 6 hid.c:744: Test failed: 0x800: desc[0]: CreateFile failed, error 2 hid.c:746: Test failed: 0x800: desc[0]: IOCTL_WINETEST_CREATE_DEVICE failed, last error 6 hid.c:750: Test failed: 0x800: desc[0]: WaitForSingleObject returned 0x102 hid.c:720: Test failed: 0x800: desc[0]: CreateFile failed, error 2 hid.c:722: Test failed: 0x800: desc[0]: IOCTL_WINETEST_REMOVE_DEVICE failed, last error 6
dxdiagn: provider.c:84: Test failed: Expected IDxDiagProvider::Initialize to return S_OK, got 80070005 provider.c:88: Test failed: Expected IDxDiagProvider::Initialize to return S_OK, got 80070005 provider.c:125: Test failed: Expected IDxDiagProvider::Initialize to return S_OK, got 80070005
httpapi: httpapi.c:173: Test failed: Unexpected ret value 5. httpapi.c:174: Test failed: Unexpected handle value 0000000000000000. httpapi.c:178: Test failed: Unexpected ret value 5. httpapi.c:179: Test failed: Unexpected handle 0000000000000000. httpapi.c:181: Test failed: Failed to close queue handle, error 6. httpapi.c:189: Test failed: Got error 6. httpapi.c:191: Test failed: Got error 6. httpapi.c:201: Test failed: Got error 6. httpapi.c:203: Test failed: Got error 6. httpapi.c:205: Test failed: Got error 6. httpapi.c:207: Test failed: Got error 6. httpapi.c:209: Test failed: Got error 6. httpapi.c:211: Test failed: Got error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50000/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50001/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50002/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50003/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50004/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50005/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50006/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50007/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50008/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50009/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50010/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50011/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50012/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50013/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50014/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50015/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50016/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50017/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50018/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50019/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50020/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50021/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50022/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50023/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50024/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50025/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50026/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50027/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50028/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50029/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50030/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50031/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50032/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50033/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50034/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50035/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50036/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50037/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50038/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50039/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50040/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50041/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50042/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50043/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50044/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50045/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50046/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50047/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50048/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50049/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50050/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50051/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50052/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50053/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50054/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50055/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50056/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50057/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50058/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50059/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50060/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50061/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50062/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50063/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50064/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50065/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50066/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50067/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50068/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50069/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50070/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50071/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50072/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50073/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50074/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50075/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50076/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50077/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50078/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50079/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50080/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50081/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50082/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50083/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50084/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50085/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50086/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50087/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50088/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50089/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50090/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50091/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50092/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50093/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50094/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50095/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50096/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50097/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50098/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50099/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50100/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50101/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50102/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50103/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50104/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50105/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50106/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50107/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50108/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50109/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50110/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50111/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50112/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50113/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50114/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50115/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50116/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50117/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50118/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50119/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50120/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50121/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50122/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50123/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50124/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50125/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50126/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50127/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50128/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50129/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50130/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50131/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50132/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50133/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50134/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50135/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50136/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50137/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50138/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50139/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50140/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50141/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50142/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50143/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50144/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50145/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50146/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50147/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50148/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50149/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50150/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50151/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50152/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50153/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50154/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50155/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50156/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50157/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50158/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50159/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50160/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50161/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50162/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50163/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50164/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50165/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50166/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50167/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50168/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50169/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50170/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50171/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50172/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50173/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50174/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50175/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50176/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50177/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50178/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50179/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50180/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50181/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50182/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50183/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50184/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50185/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50186/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50187/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50188/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50189/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50190/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50191/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50192/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50193/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50194/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50195/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50196/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50197/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50198/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50199/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50200/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50201/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50202/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50203/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50204/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50205/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50206/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50207/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50208/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50209/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50210/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50211/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50212/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50213/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50214/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50215/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50216/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50217/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50218/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50219/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50220/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50221/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50222/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50223/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50224/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50225/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50226/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50227/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50228/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50229/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50230/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50231/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50232/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50233/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50234/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50235/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50236/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50237/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50238/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50239/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50240/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50241/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50242/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50243/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50244/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50245/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50246/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50247/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50248/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50249/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50250/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50251/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50252/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50253/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50254/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50255/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50256/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50257/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50258/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50259/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50260/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50261/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50262/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50263/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50264/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50265/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50266/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50267/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50268/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50269/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50270/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50271/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50272/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50273/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50274/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50275/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50276/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50277/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50278/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50279/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50280/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50281/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50282/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50283/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50284/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50285/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50286/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50287/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50288/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50289/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50290/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50291/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50292/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50293/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50294/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50295/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50296/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50297/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50298/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50299/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50300/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50301/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50302/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50303/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50304/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50305/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50306/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50307/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50308/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50309/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50310/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50311/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50312/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50313/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50314/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50315/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50316/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50317/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50318/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50319/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50320/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50321/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50322/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50323/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50324/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50325/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50326/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50327/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50328/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50329/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50330/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50331/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50332/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50333/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50334/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50335/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50336/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50337/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50338/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50339/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50340/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50341/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50342/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50343/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50344/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50345/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50346/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50347/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50348/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50349/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50350/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50351/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50352/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50353/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50354/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50355/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50356/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50357/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50358/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50359/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50360/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50361/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50362/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50363/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50364/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50365/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50366/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50367/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50368/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50369/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50370/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50371/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50372/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50373/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50374/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50375/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50376/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50377/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50378/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50379/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50380/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50381/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50382/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50383/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50384/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50385/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50386/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50387/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50388/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50389/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50390/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50391/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50392/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50393/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50394/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50395/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50396/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50397/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50398/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50399/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50400/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50401/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50402/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50403/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50404/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50405/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50406/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50407/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50408/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50409/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50410/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50411/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50412/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50413/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50414/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50415/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50416/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50417/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50418/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50419/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50420/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50421/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50422/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50423/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50424/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50425/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50426/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50427/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50428/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50429/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50430/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50431/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50432/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50433/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50434/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50435/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50436/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50437/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50438/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50439/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50440/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50441/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50442/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50443/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50444/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50445/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50446/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50447/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50448/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50449/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50450/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50451/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50452/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50453/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50454/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50455/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50456/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50457/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50458/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50459/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50460/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50461/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50462/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50463/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50464/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50465/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50466/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50467/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50468/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50469/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50470/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50471/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50472/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50473/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50474/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50475/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50476/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50477/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50478/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50479/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50480/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50481/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50482/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50483/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50484/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50485/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50486/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50487/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50488/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50489/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50490/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50491/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50492/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50493/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50494/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50495/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50496/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50497/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50498/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50499/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50500/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50501/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50502/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50503/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50504/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50505/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50506/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50507/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50508/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50509/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50510/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50511/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50512/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50513/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50514/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50515/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50516/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50517/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50518/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50519/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50520/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50521/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50522/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50523/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50524/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50525/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50526/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50527/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50528/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50529/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50530/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50531/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50532/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50533/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50534/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50535/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50536/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50537/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50538/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50539/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50540/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50541/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50542/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50543/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50544/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50545/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50546/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50547/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50548/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50549/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50550/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50551/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50552/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50553/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50554/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50555/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50556/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50557/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50558/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50559/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50560/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50561/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50562/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50563/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50564/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50565/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50566/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50567/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50568/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50569/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50570/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50571/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50572/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50573/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50574/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50575/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50576/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50577/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50578/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50579/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50580/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50581/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50582/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50583/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50584/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50585/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50586/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50587/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50588/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50589/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50590/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50591/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50592/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50593/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50594/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50595/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50596/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50597/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50598/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50599/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50600/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50601/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50602/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50603/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50604/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50605/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50606/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50607/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50608/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50609/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50610/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50611/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50612/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50613/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50614/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50615/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50616/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50617/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50618/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50619/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50620/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50621/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50622/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50623/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50624/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50625/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50626/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50627/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50628/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50629/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50630/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50631/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50632/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50633/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50634/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50635/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50636/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50637/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50638/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50639/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50640/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50641/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50642/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50643/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50644/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50645/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50646/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50647/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50648/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50649/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50650/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50651/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50652/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50653/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50654/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50655/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50656/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50657/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50658/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50659/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50660/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50661/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50662/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50663/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50664/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50665/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50666/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50667/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50668/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50669/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50670/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50671/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50672/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50673/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50674/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50675/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50676/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50677/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50678/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50679/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50680/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50681/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50682/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50683/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50684/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50685/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50686/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50687/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50688/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50689/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50690/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50691/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50692/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50693/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50694/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50695/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50696/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50697/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50698/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50699/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50700/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50701/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50702/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50703/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50704/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50705/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50706/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50707/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50708/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50709/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50710/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50711/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50712/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50713/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50714/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50715/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50716/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50717/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50718/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50719/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50720/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50721/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50722/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50723/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50724/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50725/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50726/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50727/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50728/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50729/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50730/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50731/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50732/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50733/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50734/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50735/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50736/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50737/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50738/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50739/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50740/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50741/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50742/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50743/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50744/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50745/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50746/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50747/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50748/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50749/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50750/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50751/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50752/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50753/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50754/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50755/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50756/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50757/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50758/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50759/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50760/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50761/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50762/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50763/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50764/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50765/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50766/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50767/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50768/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50769/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50770/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50771/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50772/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50773/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50774/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50775/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50776/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50777/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50778/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50779/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50780/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50781/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50782/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50783/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50784/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50785/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50786/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50787/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50788/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50789/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50790/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50791/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50792/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50793/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50794/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50795/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50796/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50797/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50798/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50799/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50800/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50801/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50802/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50803/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50804/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50805/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50806/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50807/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50808/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50809/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50810/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50811/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50812/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50813/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50814/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50815/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50816/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50817/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50818/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50819/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50820/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50821/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50822/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50823/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50824/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50825/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50826/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50827/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50828/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50829/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50830/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50831/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50832/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50833/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50834/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50835/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50836/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50837/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50838/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50839/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50840/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50841/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50842/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50843/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50844/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50845/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50846/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50847/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50848/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50849/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50850/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50851/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50852/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50853/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50854/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50855/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50856/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50857/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50858/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50859/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50860/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50861/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50862/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50863/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50864/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50865/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50866/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50867/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50868/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50869/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50870/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50871/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50872/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50873/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50874/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50875/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50876/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50877/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50878/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50879/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50880/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50881/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50882/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50883/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50884/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50885/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50886/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50887/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50888/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50889/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50890/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50891/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50892/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50893/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50894/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50895/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50896/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50897/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50898/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50899/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50900/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50901/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50902/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50903/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50904/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50905/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50906/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50907/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50908/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50909/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50910/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50911/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50912/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50913/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50914/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50915/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50916/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50917/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50918/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50919/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50920/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50921/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50922/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50923/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50924/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50925/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50926/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50927/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50928/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50929/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50930/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50931/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50932/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50933/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50934/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50935/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50936/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50937/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50938/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50939/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50940/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50941/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50942/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50943/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50944/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50945/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50946/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50947/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50948/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50949/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50950/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50951/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50952/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50953/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50954/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50955/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50956/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50957/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50958/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50959/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50960/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50961/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50962/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50963/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50964/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50965/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50966/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50967/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50968/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50969/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50970/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50971/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50972/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50973/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50974/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50975/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50976/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50977/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50978/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50979/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50980/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50981/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50982/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50983/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50984/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50985/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50986/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50987/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50988/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50989/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50990/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50991/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50992/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50993/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50994/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50995/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50996/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50997/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50998/", error 6. httpapi.c:111: Test failed: Failed to add L"http://localhost:50999/", error 6. httpapi.c:113: Test failed: Failed to add url L"http://localhost:50999/", error 6. httpapi.c:215: Test failed: Got error 6. httpapi.c:80: Test failed: Failed to connect socket, error 10061. httpapi.c:229: Test failed: send() returned -1. httpapi: Timeout
kernel32: profile.c:1240: Test failed: expected len 6, got 7 profile.c:1240: Test failed: expected "value1", got "default" profile.c:1243: Test failed: got error 2 profile.c:1244: Test failed: got error 6 profile.c:1244: Test failed: expected "value1", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc" profile.c:1244: Test failed: got type 2147221504 profile.c:1247: Test failed: got error 6 profile.c:1249: Test failed: expected len 6, got 7 profile.c:1249: Test failed: expected "value2", got "default" profile.c:1252: Test failed: winetest_map.ini should not exist. profile.c:1257: Test failed: got error 6 profile.c:1262: Test failed: got error 6 profile.c:1269: Test failed: got error 6 profile.c:1273: Test failed: got error 6 profile.c:1277: Test failed: got error 6 profile.c:1290: Test failed: expected len 6, got 7 profile.c:1290: Test failed: expected "value5", got "default" profile.c:1322: Test failed: got 0 profile.c:1323: Test failed: got "" profile.c:1327: Test failed: got 0 profile.c:1328: Test failed: got "" profile.c:1336: Test failed: got "fil" profile.c:1340: Test failed: got 13 profile.c:1341: Test failed: got "file_section\x00" profile.c:1361: Test failed: got error 2 profile.c:1362: Test failed: got error 6 profile.c:1362: Test failed: expected "value1", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc" profile.c:1362: Test failed: got type 2227536 profile.c:1365: Test failed: got error 6 profile.c:1367: Test failed: expected len 6, got 7 profile.c:1367: Test failed: expected "value2", got "default" profile.c:1370: Test failed: winetest_map.ini should not exist. profile.c:1373: Test failed: got error 6 profile.c:1387: Test failed: expected len 7, got 6 profile.c:1387: Test failed: expected "default", got "value1" profile.c:1398: Test failed: got error 2 profile.c:1401: Test failed: got error 6 profile.c:1409: Test failed: expected "value1", got "value2" profile.c:1433: Test failed: got error 2 profile.c:1434: Test failed: got error 6 profile.c:1434: Test failed: expected "value1", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc" profile.c:1434: Test failed: got type 2227536 profile.c:1444: Test failed: expected len 6, got 7 profile.c:1444: Test failed: expected "value2", got "default" profile.c:1447: Test failed: winetest_map.ini should not exist. profile.c:1472: Test failed: got error 2 profile.c:1473: Test failed: got error 6 profile.c:1473: Test failed: expected "value1", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc" profile.c:1473: Test failed: got type 2227536 profile.c:1476: Test failed: got error 6 profile.c:1477: Test failed: expected len 3, got 6 profile.c:1477: Test failed: expected "one", got "value1" profile.c:1480: Test failed: got error 6 profile.c:1487: Test failed: got error 2 profile.c:1488: Test failed: got error 6 profile.c:1488: Test failed: expected "value2", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc" profile.c:1488: Test failed: got type 2227536 profile.c:1491: Test failed: got error 6 profile.c:1492: Test failed: expected len 3, got 6 profile.c:1492: Test failed: expected "two", got "value2" profile.c:1495: Test failed: got error 6 profile.c:1515: Test failed: expected len 6, got 7 profile.c:1515: Test failed: expected "value2", got "default" profile.c:1516: Test failed: expected len 6, got 5 profile.c:1516: Test failed: expected "value3", got "three" profile.c:1519: Test failed: got error 2 profile.c:1521: Test failed: got error 6 profile.c:1531: Test failed: got 22 profile.c:1532: Test failed: got "name1=one\x00name3=three\x00" profile.c:1541: Test failed: got error 2 profile.c:1543: Test failed: got error 2 profile.c:1560: Test failed: got error 2 profile.c:1561: Test failed: got error 6 profile.c:1561: Test failed: expected "value3", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc" profile.c:1561: Test failed: got type 2227536 profile.c:1564: Test failed: got error 6 profile.c:1565: Test failed: expected len 5, got 6 profile.c:1565: Test failed: expected "three", got "value3" profile.c:1569: Test failed: got 26 profile.c:1583: Test failed: got error 2 profile.c:1585: Test failed: got error 2 profile.c:1587: Test failed: got error 6 profile.c:1599: Test failed: expected failure profile.c:1600: Test failed: got error 0 sync.c:290: Test succeeded inside todo block: wrong error 5, , access 4000000 sync.c:290: Test succeeded inside todo block: wrong error 5, , access 8000000
ntdll: reg.c:257: Test succeeded inside todo block: Expected STATUS_ACCESS_DENIED, got: 0xc0000022 reg.c:259: Test succeeded inside todo block: key = 0000000000000000
ntoskrnl.exe: driver.c:1403: Test failed: ObOpenObjectByPointer failed: 0xc0000022 driver.c:1406: Test failed: ZwClose failed: 0xc0000008 driver.c:1905: Test failed: got status 0xc0000022 driver.c:1906: Test failed: got size 0 driver.c:1910: Test failed: got status 0xc0000022 driver.c:1911: Test failed: driver.c:1912: Test failed: got size 0 driver.c:1913: Test failed: got length 56084 driver.c:1914: Test failed: got maximum length 65475 driver.c:1921: Test failed: got status 0xc0000022 driver.c:1922: Test failed: driver.c:1923: Test failed: got size 0 driver.c:1924: Test failed: got length 56084 driver.c:1925: Test failed: got maximum length 65475 driver.c:1939: Test failed: got status 0xc0000022 driver.c:1940: Test failed: driver.c:1941: Test failed: got size 0 driver.c:1942: Test failed: got length 56084 driver.c:1943: Test failed: got maximum length 65475 driver.c:1951: Test failed: got status 0xc0000022 driver.c:1952: Test failed: driver.c:1953: Test failed: got size 0 driver.c:1954: Test failed: got length 56084 driver.c:1955: Test failed: got maximum length 65475 driver.c:1959: Test failed: got status 0xc0000022 driver.c:1960: Test failed: driver.c:1961: Test failed: got size 0 driver.c:1962: Test failed: got length 56084 driver.c:1963: Test failed: got maximum length 65475 driver.c:2296: Test succeeded inside todo block: got 0 driver.c:2299: Test succeeded inside todo block: got 0 driver.c:2304: Test succeeded inside todo block: got 0xc0000034 driver.c:2308: Test succeeded inside todo block: got 0 driver.c:2316: Test succeeded inside todo block: got 0 driver.c:2320: Test succeeded inside todo block: got 0xc0000034 ntoskrnl.c:1501: Test failed: wrong class {00000000-0000-0000-0000-000000000000} ntoskrnl.c:1503: Test failed: got flags 0 ntoskrnl.c:1507: Test failed: failed to get interface path, error 0x57 ntoskrnl.c:1508: Test failed: wrong path "\WINETEST\0" ntoskrnl.c:1514: Test failed: got error 3 ntoskrnl.c:1535: Test failed: wrong class {00000000-0000-0000-0000-000000000000} ntoskrnl.c:1558: Test failed: wrong class {00000000-0000-0000-0000-000000000000} ntoskrnl.c:1560: Test failed: got flags 0 ntoskrnl.c:1574: Test failed: wrong class {00000000-0000-0000-0000-000000000000} ntoskrnl.c:1619: Test succeeded inside todo block: expected failure ntoskrnl.c:1673: Test failed: wrong class {00000000-0000-0000-0000-000000000000} ntoskrnl.c:1675: Test failed: got flags 0 ntoskrnl.c:1679: Test failed: failed to get interface path, error 0x57 ntoskrnl.c:1680: Test failed: wrong path "\WINETEST\0"
qcap: avico.c:724: Test failed: Got hr 0x1.
qedit: mediadet.c:532: Test failed: Got hr 0x80004002. mediadet.c:543: Test failed: Got hr 0x80070057. mediadet.c:547: Test failed: Got hr 0x80070057. mediadet.c:548: Test failed: Got major type {0021fc00-0000-0000-50fd-210000000000}. mediadet.c:551: Test failed: Got hr 0x80070057. mediadet.c:552: Test failed: Got major type L"\fd58!". mediadet.c:561: Test failed: Got hr 0x80070057. mediadet.c:562: Test failed: Got -1 streams. mediadet.c:595: Test failed: Got hr 0x80070057. mediadet.c:604: Test failed: Got hr 0x80070057. mediadet.c:605: Test failed: IMediaDet_get_StreamMediaType mediadet.c:610: Test failed: Got hr 0x80070057. mediadet.c:611: Test failed: Got major type {0021fc00-0000-0000-50fd-210000000000}. mediadet.c:614: Test failed: Got hr 0x80070057. mediadet.c:615: Test failed: Got major type L"\fd58!". mediadet.c:623: Test failed: Got hr 0x80070057. mediadet.c:624: Test failed: IMediaDet_get_FrameRate: fps is 0.000000 mediadet.c:637: Test failed: Got hr 0x80004002. mediadet.c:641: Test failed: Got hr 0x80070057. mediadet.c:642: Test failed: Got -1 streams. mediadet.c:658: Test failed: Got hr 0x80070057. mediadet.c:667: Test failed: Got hr 0x80070057. mediadet.c:658: Test failed: Got hr 0x80070057. mediadet.c:663: Test failed: Got stream index 0. mediadet.c:667: Test failed: Got hr 0x80070057. mediadet.c:692: Test failed: IMediaDet_get_StreamMediaType: flags are 0 mediadet.c:700: Test failed: Got stream index 0. mediadet.c:837: Test failed: Got hr 0x80004002. mediadet.c:841: Test failed: Got hr 0x80070057.
quartz: filtergraph.c:2224: Test failed: Got hr 0x80040218. filtergraph.c:2225: Test failed: Got peer 0000000000000000. filtergraph.c:2257: Test failed: Got hr 0x80040218. filtergraph.c:2258: Test failed: Got peer 0000000000000000. filtergraph.c:2278: Test failed: Got hr 0x80040218. filtergraph.c:2279: Test failed: Got peer 0000000000000000. filtergraph.c:2296: Test failed: Got hr 0x80040218. filtergraph.c:2297: Test failed: Got peer 0000000000000000. filtergraph.c:2642: Test failed: Got hr 0x80040217. filtergraph.c:2643: Test failed: Got peer 0000000000000000. filtergraph.c:2645: Test failed: Got peer 0000000000000000. filtergraph.c:2681: Test failed: Got hr 0x80040217. filtergraph.c:2682: Test failed: Got peer 0000000000000000. filtergraph.c:2683: Test failed: Got peer 0000000000000000. filtergraph.c:2701: Test failed: Got hr 0x80040217. filtergraph.c:2702: Test failed: Got peer 0000000000000000. filtergraph.c:2703: Test failed: Got peer 0000000000000000. filtergraph.c:4381: Test failed: Got hr 0x80040218. filtergraph.c:4383: Test failed: Expected connection. filtergraph.c:4393: Test failed: Got 0x102. filtergraph.c:4397: Test failed: Expected MPEG sequence header. filtergraph.c:4398: Test failed: Expected MPEG sequence header. filtergraph.c:5574: Test failed: Got hr 0x80040218. filtergraph.c:793: Test failed: Got hr 0x80040218. filtergraph.c:142: Test failed: Got hr 0x80004002. filtergraph.c:144: Test failed: Got hr 0x80004002. filtergraph.c:146: Test failed: Got hr 0x80004002. filtergraph.c:148: Test failed: Got hr 0x80004002. filtergraph.c:152: Test failed: Got hr 0x80004002. filtergraph.c:154: Test failed: Got hr 0x80004002. filtergraph.c:156: Test failed: Got hr 0x80004002. filtergraph.c:158: Test failed: Got hr 0x80004002. filtergraph.c:159: Test failed: Got left 4932234. filtergraph.c:161: Test failed: Expected width 3618336, got 0. filtergraph.c:165: Test failed: Got hr 0x80004002. filtergraph.c:167: Test failed: Got hr 0x80004002. filtergraph.c:169: Test failed: Got hr 0x80004002. filtergraph.c:171: Test failed: Got hr 0x80004002. filtergraph.c:173: Test failed: Got hr 0x80004002. filtergraph.c:176: Test failed: Got hr 0x80004002. filtergraph.c:178: Test failed: Got hr 0x80004002. filtergraph.c:180: Test failed: Got hr 0x80004002. filtergraph.c:182: Test failed: Got hr 0x80004002. filtergraph.c:184: Test failed: Got hr 0x80004002. filtergraph.c:186: Test failed: Got hr 0x80004002. filtergraph.c:189: Test failed: Got hr 0x80004002. filtergraph.c:191: Test failed: Got hr 0x80004002. filtergraph.c:194: Test failed: Got hr 0x80004002. filtergraph.c:197: Test failed: Got hr 0x80004002. filtergraph.c:198: Test failed: Expected left 1809168, got 4932234. filtergraph.c:200: Test failed: Got hr 0x80004002. filtergraph.c:203: Test failed: Got hr 0x80004002. filtergraph.c:204: Test failed: Expected width 1206113, got 0. filtergraph.c:206: Test failed: Got hr 0x80004002. filtergraph.c:207: Test failed: Expected height 1, got 0. filtergraph.c:210: Test failed: Got hr 0x80004002. filtergraph.c:212: Test failed: Got hr 0x80004002. filtergraph.c:213: Test failed: Expected left 1206112, got 4932234. filtergraph.c:214: Test failed: Expected width 1206113, got 0. filtergraph.c:217: Test failed: Got hr 0x80004002. filtergraph.c:219: Test failed: Got hr 0x80004002. filtergraph.c:221: Test failed: Expected height 1, got 0. filtergraph.c:224: Test failed: Got hr 0x80004002. filtergraph.c:226: Test failed: Got hr 0x80004002. filtergraph.c:227: Test failed: Expected left 1206112, got 4932234. filtergraph.c:228: Test failed: Expected width 904585, got 0. filtergraph.c:231: Test failed: Got hr 0x80004002. filtergraph.c:233: Test failed: Got hr 0x80004002. filtergraph.c:235: Test failed: Expected height 1, got 0. filtergraph.c:241: Test failed: Got hr 0x80004002. filtergraph.c:243: Test failed: Got hr 0x80004002. filtergraph.c:245: Test failed: Got hr 0x80004002. filtergraph.c:247: Test failed: Got hr 0x80004002. filtergraph.c:248: Test failed: Got left 4932234. filtergraph.c:250: Test failed: Expected width 3618336, got 0. filtergraph.c:254: Test failed: Got hr 0x80004002. filtergraph.c:256: Test failed: Got hr 0x80004002. filtergraph.c:259: Test failed: Got hr 0x80004002. filtergraph.c:261: Test failed: Got hr 0x80004002. filtergraph.c:263: Test failed: Got hr 0x80004002. filtergraph.c:266: Test failed: Got hr 0x80004002. filtergraph.c:268: Test failed: Got hr 0x80004002. filtergraph.c:270: Test failed: Got hr 0x80004002. filtergraph.c:272: Test failed: Got hr 0x80004002. filtergraph.c:274: Test failed: Got hr 0x80004002. filtergraph.c:276: Test failed: Got hr 0x80004002. filtergraph.c:279: Test failed: Got hr 0x80004002. filtergraph.c:281: Test failed: Got hr 0x80004002. filtergraph.c:284: Test failed: Got hr 0x80004002. filtergraph.c:287: Test failed: Got hr 0x80004002. filtergraph.c:288: Test failed: Expected left 1809168, got 4932234. filtergraph.c:290: Test failed: Got hr 0x80004002. filtergraph.c:293: Test failed: Got hr 0x80004002. filtergraph.c:294: Test failed: Expected width 1206113, got 0. filtergraph.c:296: Test failed: Got hr 0x80004002. filtergraph.c:297: Test failed: Expected height 1, got 0. filtergraph.c:300: Test failed: Got hr 0x80004002. filtergraph.c:302: Test failed: Got hr 0x80004002. filtergraph.c:303: Test failed: Expected left 1206112, got 4932234. filtergraph.c:304: Test failed: Expected width 1206113, got 0. filtergraph.c:307: Test failed: Got hr 0x80004002. filtergraph.c:309: Test failed: Got hr 0x80004002. filtergraph.c:311: Test failed: Expected height 1, got 0. filtergraph.c:314: Test failed: Got hr 0x80004002. filtergraph.c:316: Test failed: Got hr 0x80004002. filtergraph.c:317: Test failed: Expected left 1206112, got 4932234. filtergraph.c:318: Test failed: Expected width 904585, got 0. filtergraph.c:321: Test failed: Got hr 0x80004002. filtergraph.c:323: Test failed: Got hr 0x80004002. filtergraph.c:325: Test failed: Expected height 1, got 0. filtergraph.c:329: Test failed: Got hr 0x80004002. filtergraph.c:333: Test failed: Got hr 0x80004002. filtergraph.c:378: Test failed: Got hr 0x80004001. filtergraph.c:379: Test failed: got 0 filtergraph.c:382: Test failed: Got hr 0x80004001. filtergraph.c:387: Test failed: Got hr 0x80004001. filtergraph.c:389: Test failed: Got hr 0x80004001. filtergraph.c:393: Test failed: Got hr 0x80004001. filtergraph.c:491: Test failed: Got hr 0x80004001. filtergraph.c:494: Test failed: Got hr 0x80004001. filtermapper.c:189: Test failed: EnumMatchingFilters failed to return the test filter 1 filtermapper.c:201: Test failed: EnumMatchingFilters failed to return the test filter 2 filtermapper.c:216: Test failed: EnumMatchingFilters failed to return the test filter 1 filtermapper.c:232: Test failed: IFilterMapper didn't find filter filtermapper.c:254: Test failed: Got hr 0x80070002. filtermapper.c:258: Test failed: Got hr 0x80070002. filtermapper.c:322: Test failed: IFilterMapper2 didn't find filter filtermapper.c:335: Test failed: IFilterMapper didn't find filter filtermapper.c:338: Test failed: Got hr 0x80070005. filtermapper.c:359: Test failed: RegDeleteKeyA failed: 5 filtermapper.c:365: Test failed: Got hr 0x80070005. filtermapper.c:424: Test failed: Got hr 0x80070002. filtermapper.c:446: Test failed: Got hr 0x80070002. filtermapper.c:649: Test failed: DMO should be enumerated.
setupapi: devinst.c:1869: Test failed: Key should not exist. devinst.c:1952: Test succeeded inside todo block: Expected failure. devinst.c:1953: Test succeeded inside todo block: Got unexpected error 0x5. devinst.c:2046: Test failed: Key should not exist. devinst.c:2208: Test failed: Key should not exist. devinst.c:2368: Test failed: Key should not exist.
shell32: shellpath.c:2238: Test failed: failed to get folder category: 0x80004005 shellpath.c:2239: Test failed: invalid folder category: 0 shellpath.c:2260: Test failed: failed to get folder definition: 0x80070002 shellpath.c:511: Test failed: cannot get known folder definition for FOLDERID_Desktop shellpath.c:628: Test failed: cannot get known folder definition for FOLDERID_InternetFolder shellpath.c:854: Test failed: cannot get known folder definition for FOLDERID_Programs shellpath.c:492: Test failed: cannot get known folder definition for FOLDERID_ControlPanelFolder shellpath.c:763: Test failed: cannot get known folder definition for FOLDERID_PrintersFolder shellpath.c:529: Test failed: cannot get known folder definition for FOLDERID_Documents shellpath.c:556: Test failed: cannot get known folder definition for FOLDERID_Favorites shellpath.c:1134: Test failed: cannot get known folder definition for FOLDERID_Startup shellpath.c:963: Test failed: cannot get known folder definition for FOLDERID_Recent shellpath.c:1098: Test failed: cannot get known folder definition for FOLDERID_SendTo shellpath.c:981: Test failed: cannot get known folder definition for FOLDERID_RecycleBinFolder shellpath.c:1125: Test failed: cannot get known folder definition for FOLDERID_StartMenu shellpath.c:682: Test failed: cannot get known folder definition for FOLDERID_Music shellpath.c:1254: Test failed: cannot get known folder definition for FOLDERID_Videos shellpath.c:511: Test failed: cannot get known folder definition for FOLDERID_Desktop shellpath.c:454: Test failed: cannot get known folder definition for FOLDERID_ComputerFolder shellpath.c:709: Test failed: cannot get known folder definition for FOLDERID_NetworkFolder shellpath.c:700: Test failed: cannot get known folder definition for FOLDERID_NetHood shellpath.c:565: Test failed: cannot get known folder definition for FOLDERID_Fonts shellpath.c:1191: Test failed: cannot get known folder definition for FOLDERID_Templates shellpath.c:427: Test failed: cannot get known folder definition for FOLDERID_CommonStartMenu shellpath.c:418: Test failed: cannot get known folder definition for FOLDERID_CommonPrograms shellpath.c:436: Test failed: cannot get known folder definition for FOLDERID_CommonStartup shellpath.c:873: Test failed: cannot get known folder definition for FOLDERID_PublicDesktop shellpath.c:1008: Test failed: cannot get known folder definition for FOLDERID_RoamingAppData shellpath.c:772: Test failed: cannot get known folder definition for FOLDERID_PrintHood shellpath.c:655: Test failed: cannot get known folder definition for FOLDERID_LocalAppData shellpath.c:556: Test failed: cannot get known folder definition for FOLDERID_Favorites shellpath.c:619: Test failed: cannot get known folder definition for FOLDERID_InternetCache shellpath.c:502: Test failed: cannot get known folder definition for FOLDERID_Cookies shellpath.c:592: Test failed: cannot get known folder definition for FOLDERID_History shellpath.c:790: Test failed: cannot get known folder definition for FOLDERID_ProgramData shellpath.c:1272: Test failed: cannot get known folder definition for FOLDERID_Windows shellpath.c:1173: Test failed: cannot get known folder definition for FOLDERID_System shellpath.c:799: Test failed: cannot get known folder definition for FOLDERID_ProgramFiles shellpath.c:736: Test failed: cannot get known folder definition for FOLDERID_Pictures shellpath.c:781: Test failed: cannot get known folder definition for FOLDERID_Profile shellpath.c:1182: Test failed: cannot get known folder definition for FOLDERID_SystemX86 shellpath.c:845: Test failed: cannot get known folder definition for FOLDERID_ProgramFilesX86 shellpath.c:809: Test failed: cannot get known folder definition for FOLDERID_ProgramFilesCommon shellpath.c:827: Test failed: cannot get known folder definition for FOLDERID_ProgramFilesCommonX86 shellpath.c:445: Test failed: cannot get known folder definition for FOLDERID_CommonTemplates shellpath.c:882: Test failed: cannot get known folder definition for FOLDERID_PublicDocuments shellpath.c:400: Test failed: cannot get known folder definition for FOLDERID_CommonAdminTools shellpath.c:362: Test failed: cannot get known folder definition for FOLDERID_AdminTools shellpath.c:473: Test failed: cannot get known folder definition for FOLDERID_ConnectionsFolder shellpath.c:918: Test failed: cannot get known folder definition for FOLDERID_PublicMusic shellpath.c:927: Test failed: cannot get known folder definition for FOLDERID_PublicPictures shellpath.c:945: Test failed: cannot get known folder definition for FOLDERID_PublicVideos shellpath.c:990: Test failed: cannot get known folder definition for FOLDERID_ResourceDir shellpath.c:673: Test failed: cannot get known folder definition for FOLDERID_LocalizedResourcesDir shellpath.c:409: Test failed: cannot get known folder definition for FOLDERID_CommonOEMLinks shellpath.c:381: Test failed: cannot get known folder definition for FOLDERID_CDBurning shellpath.c:352: Test failed: cannot get known folder definition for FOLDERID_AddNewPrograms shellpath.c:371: Test failed: cannot get known folder definition for FOLDERID_AppUpdates shellpath.c:390: Test failed: cannot get known folder definition for FOLDERID_ChangeRemovePrograms shellpath.c:463: Test failed: cannot get known folder definition for FOLDERID_ConflictFolder shellpath.c:483: Test failed: cannot get known folder definition for FOLDERID_Contacts shellpath.c:520: Test failed: cannot get known folder definition for FOLDERID_DeviceMetadataStore shellpath.c:538: Test failed: cannot get known folder definition for FOLDERID_DocumentsLibrary shellpath.c:547: Test failed: cannot get known folder definition for FOLDERID_Downloads shellpath.c:574: Test failed: cannot get known folder definition for FOLDERID_Games shellpath.c:583: Test failed: cannot get known folder definition for FOLDERID_GameTasks shellpath.c:601: Test failed: cannot get known folder definition for FOLDERID_HomeGroup shellpath.c:610: Test failed: cannot get known folder definition for FOLDERID_ImplicitAppShortcuts shellpath.c:637: Test failed: cannot get known folder definition for FOLDERID_Libraries shellpath.c:646: Test failed: cannot get known folder definition for FOLDERID_Links shellpath.c:664: Test failed: cannot get known folder definition for FOLDERID_LocalAppDataLow shellpath.c:691: Test failed: cannot get known folder definition for FOLDERID_MusicLibrary shellpath.c:718: Test failed: cannot get known folder definition for FOLDERID_OriginalImages shellpath.c:727: Test failed: cannot get known folder definition for FOLDERID_PhotoAlbums shellpath.c:745: Test failed: cannot get known folder definition for FOLDERID_PicturesLibrary shellpath.c:754: Test failed: cannot get known folder definition for FOLDERID_Playlists shellpath.c:836: Test failed: cannot get known folder definition for FOLDERID_ProgramFilesX64 shellpath.c:818: Test failed: cannot get known folder definition for FOLDERID_ProgramFilesCommonX64 shellpath.c:863: Test failed: cannot get known folder definition for FOLDERID_Public shellpath.c:891: Test failed: cannot get known folder definition for FOLDERID_PublicDownloads shellpath.c:900: Test failed: cannot get known folder definition for FOLDERID_PublicGameTasks shellpath.c:909: Test failed: cannot get known folder definition for FOLDERID_PublicLibraries shellpath.c:936: Test failed: cannot get known folder definition for FOLDERID_PublicRingtones shellpath.c:954: Test failed: cannot get known folder definition for FOLDERID_QuickLaunch shellpath.c:972: Test failed: cannot get known folder definition for FOLDERID_RecordedTVLibrary shellpath.c:999: Test failed: cannot get known folder definition for FOLDERID_Ringtones shellpath.c:1017: Test failed: cannot get known folder definition for FOLDERID_SampleMusic shellpath.c:1026: Test failed: cannot get known folder definition for FOLDERID_SamplePictures shellpath.c:1035: Test failed: cannot get known folder definition for FOLDERID_SamplePlaylists shellpath.c:1044: Test failed: cannot get known folder definition for FOLDERID_SampleVideos shellpath.c:1053: Test failed: cannot get known folder definition for FOLDERID_SavedGames shellpath.c:1062: Test failed: cannot get known folder definition for FOLDERID_SavedSearches shellpath.c:1071: Test failed: cannot get known folder definition for FOLDERID_SEARCH_CSC shellpath.c:1089: Test failed: cannot get known folder definition for FOLDERID_SEARCH_MAPI shellpath.c:1080: Test failed: cannot get known folder definition for FOLDERID_SearchHome shellpath.c:1107: Test failed: cannot get known folder definition for FOLDERID_SidebarDefaultParts shellpath.c:1116: Test failed: cannot get known folder definition for FOLDERID_SidebarParts shellpath.c:1143: Test failed: cannot get known folder definition for FOLDERID_SyncManagerFolder shellpath.c:1153: Test failed: cannot get known folder definition for FOLDERID_SyncResultsFolder shellpath.c:1163: Test failed: cannot get known folder definition for FOLDERID_SyncSetupFolder shellpath.c:1200: Test failed: cannot get known folder definition for FOLDERID_UserPinned shellpath.c:1209: Test failed: cannot get known folder definition for FOLDERID_UserProfiles shellpath.c:1218: Test failed: cannot get known folder definition for FOLDERID_UserProgramFiles shellpath.c:1227: Test failed: cannot get known folder definition for FOLDERID_UserProgramFilesCommon shellpath.c:1236: Test failed: cannot get known folder definition for FOLDERID_UsersFiles shellpath.c:1245: Test failed: cannot get known folder definition for FOLDERID_UsersLibraries shellpath.c:1263: Test failed: cannot get known folder definition for FOLDERID_VideosLibrary shellpath.c:2342: Test failed: failed to get known folder: 0x80070057 shlexec.c:1127: Test failed: ShellExecute(file="C:\users\winetest\AppData\Local\Temp\wtShlexecDir\drawback_file.noassoc foo.shlexec") failed: rc=31 shlexec.c:1132: Test failed: ShellExecute(file=""C:\users\winetest\AppData\Local\Temp\wtShlexecDir\drawback_file.noassoc foo.shlexec"") failed: rc=31 shlexec.c:1149: Test failed: ShellExecute(file="C:\users\winetest\AppData\Local\Temp\wtShlexecDir\drawback_nonexist.noassoc foo.shlexec") failed: rc=31 shlexec.c:1162: Test failed: ShellExecuteEx(mask="0x8640", file="%TMPDIR%\simple.shlexec") failed: rc=31 shlexec.c:1167: Test failed: ShellExecuteEx(mask="0x8640", file=""%TMPDIR%\simple.shlexec"") failed: rc=31 shlexec.c:1700: Test failed: ShellExecute(file="C:\users\winetest\AppData\Local\Temp\wtShlexecDir\test file.shlexec") failed: rc=31 err=2 shlexec.c:1700: Test failed: ShellExecute(file="C:\users\winetest\AppData\Local\Temp\wtShlexecDir\test file.shlexec.") failed: rc=31 err=2 shlexec.c:1700: Test failed: ShellExecute(file="C:\users\winetest\AppData\Local\Temp\wtShlexecDir%nasty% $file.shlexec") failed: rc=31 err=2 shlexec.c:1700: Test failed: ShellExecute(file="C:/users/winetest/AppData/Local/Temp/wtShlexecDir/test file.shlexec") failed: rc=31 err=2 shlexec.c:1700: Test failed: ShellExecute(file="C:\users\winetest\AppData\Local\Temp\wtShlexecDir\test file.noassoc.shlexec") failed: rc=31 err=2 shlexec.c:1700: Test failed: ShellExecute(file="C:\users\winetest\AppData\Local\Temp\wtShlexecDir\masked file.shlexec") failed: rc=31 err=2 shlexec.c:1700: Test failed: ShellExecute(file=""C:\users\winetest\AppData\Local\Temp\wtShlexecDir\masked file.shlexec"") failed: rc=31 err=2 shlexec.c:1769: Test failed: ShellExecute(file=""C:\users\winetest\AppData\Local\Temp\wtShlexecDir\test file.shlexec"") failed: rc=31 err=2 shlexec.c:1771: Test failed: ShellExecute(file=""C:\users\winetest\AppData\Local\Temp\wtShlexecDir\test file.shlexec"") argvA3 expected 'Open', but key not found or empty shlexec.c:1773: Test failed: ShellExecute(file=""C:\users\winetest\AppData\Local\Temp\wtShlexecDir\test file.shlexec"") argvA4 expected 'C:\users\winetest\AppData\Local\Temp\wtShlexecDir\test file.shlexec', but key not found or empty shlexec.c:1892: Test failed: ShellExecute(file="file:C|/users/winetest/AppData/Local/Temp/wtShlexecDir/test file.shlexec") failed: bad rc=31 shlexec.c:1892: Test failed: ShellExecute(file="file:/C|/users/winetest/AppData/Local/Temp/wtShlexecDir/test file.shlexec") failed: bad rc=31 shlexec.c:1892: Test failed: ShellExecute(file="file://C|/users/winetest/AppData/Local/Temp/wtShlexecDir/test file.shlexec") failed: bad rc=31 shlexec.c:1892: Test failed: ShellExecute(file="file:///C|/users/winetest/AppData/Local/Temp/wtShlexecDir/test file.shlexec") failed: bad rc=31 shlexec.c:1892: Test failed: ShellExecute(file="File:///C|/users/winetest/AppData/Local/Temp/wtShlexecDir/test file.shlexec") failed: bad rc=31 shlexec.c:1892: Test failed: ShellExecute(file="file:////C|/users/winetest/AppData/Local/Temp/wtShlexecDir/test file.shlexec") failed: bad rc=31 shlexec.c:1892: Test failed: ShellExecute(file="file:///C:/users/winetest/AppData/Local/Temp/wtShlexecDir/test file.shlexec") failed: bad rc=31 shlexec.c:1892: Test failed: ShellExecute(file="file:///C|\users\winetest\AppData\Local\Temp\wtShlexecDir\test file.shlexec") failed: bad rc=31 shlexec.c:1892: Test failed: ShellExecute(file="file://localhost/C|/users/winetest/AppData/Local/Temp/wtShlexecDir/test file.shlexec") failed: bad rc=31 shlexec.c:1892: Test failed: ShellExecute(file="file://LocalHost/C|/users/winetest/AppData/Local/Temp/wtShlexecDir/test file.shlexec") failed: bad rc=31 shlexec: Timeout
user32: input.c:2206: Test failed: got 0 messages input.c:2216: Test failed: got 0 messages input.c:1933: Test failed: expected non-zero input.c:1939: Test failed: expected -1, got 0 input.c:1940: Test failed: expected 122, got -559038737 input.c:1941: Test failed: expected non-zero input.c:1945: Test failed: expected non-zero input.c:2080: Test failed: expected non-zero
winmm: mci.c:1329: Test failed: mci open tempfile.wav type MPEGVideo returned MCIERR_INTERNAL mci.c:1392: Test failed: mci open tempfile.wav returned MCIERR_INTERNAL mci.c:1574: Test failed: 0: Got MCIERR_INTERNAL. mci.c:1578: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1584: Test failed: 0: Video window should be shown. mci.c:1601: Test failed: 0: Got style 0 for window 0000000000000000, expected 0x16ce0000. mci.c:1605: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1607: Test failed: 0: Got source rect (1,4421676)-(0,4601984), expected (0,0)-(32,24). mci.c:1613: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1621: Test failed: 0: Got destination rect (1,4421676)-(0,4601984), expected (0,0)-(32,24). mci.c:1634: Test failed: 0: Got window rect (20329664,0)-(277,0), expected (20329664,0)-(20329783,180342). mci.c:1638: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1641: Test failed: 0: Got rect (1,4421676)-(0,4601984), expected (20329664,0)-(-20329387,0). mci.c:1645: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1647: Test failed: 0: Video window should be visible. mci.c:1650: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1652: Test failed: 0: Video window should be visible. mci.c:1655: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1657: Test failed: 0: Video window should be visible. mci.c:1662: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1666: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1670: Test failed: 0: Video window (0000000000000000) and child window (0000000000000000) should be different. mci.c:1674: Test failed: 0: Child window 0000000000000000: got style 0, expected 0x50000000. mci.c:1679: Test failed: 0: Video window 0000000000000000: got style 0, expected 0x6ce0000. mci.c:1684: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1685: Test failed: 0: Got destination rect (63242444,0)-(0,4601984), expected (1,4421676)-(0,4601984). mci.c:1692: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1696: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1700: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1701: Test failed: 0: Got destination rect (63242444,0)-(0,2300992), expected (0,0)-(0,2300992). mci.c:1706: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1707: Test failed: 0: Main window should be shown. mci.c:1708: Test failed: 0: Video window should exist. mci.c:1714: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1715: Test failed: 0: Video window should be minimized. mci.c:1720: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1722: Test failed: 0: Got L"main", expected L"foobar" mci.c:1727: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1728: Test failed: 0: Main window should be shown. mci.c:1729: Test failed: 0: Video window should be shown. mci.c:1732: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1733: Test failed: 0: Got destination rect (0,0)-(6,4422436), expected (1,4421676)-(0,4601984). mci.c:1739: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1740: Test failed: 0: Video window should be minimized. mci.c:1745: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1747: Test failed: 0: Got L"", expected L"abracadabra" mci.c:1750: Test failed: 0: Got MCIERR_INVALID_DEVICE_ID. mci.c:1574: Test failed: 1: Got MCIERR_INTERNAL. mci.c:1578: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1584: Test failed: 1: Video window should be shown. mci.c:1587: Test failed: 1: Got owner 0000000000000000, expected 0000000000BA019C. mci.c:1601: Test failed: 1: Got style 0 for window 0000000000000000, expected 0x16ce0000. mci.c:1605: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1607: Test failed: 1: Got source rect (1,4421676)-(0,4601984), expected (0,0)-(32,24). mci.c:1613: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1621: Test failed: 1: Got destination rect (1,4421676)-(0,4601984), expected (0,0)-(32,24). mci.c:1634: Test failed: 1: Got window rect (20329664,0)-(-20329387,0), expected (20329664,0)-(20329783,180342). mci.c:1638: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1641: Test failed: 1: Got rect (1,4421676)-(0,4601984), expected (20329664,0)-(-40659051,0). mci.c:1645: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1647: Test failed: 1: Video window should be visible. mci.c:1650: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1652: Test failed: 1: Video window should be visible. mci.c:1655: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1657: Test failed: 1: Video window should be visible. mci.c:1662: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1666: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1670: Test failed: 1: Video window (0000000000000000) and child window (0000000000000000) should be different. mci.c:1674: Test failed: 1: Child window 0000000000000000: got style 0, expected 0x50000000. mci.c:1679: Test failed: 1: Video window 0000000000000000: got style 0, expected 0x6ce0000. mci.c:1684: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1685: Test failed: 1: Got destination rect (63307980,0)-(0,4601984), expected (1,4421676)-(0,4601984). mci.c:1692: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1696: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1700: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1701: Test failed: 1: Got destination rect (63307980,0)-(0,2300992), expected (0,0)-(0,2300992). mci.c:1706: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1707: Test failed: 1: Main window should be shown. mci.c:1708: Test failed: 1: Video window should exist. mci.c:1714: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1715: Test failed: 1: Video window should be minimized. mci.c:1720: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1722: Test failed: 1: Got L"main", expected L"foobar" mci.c:1727: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1728: Test failed: 1: Main window should be shown. mci.c:1729: Test failed: 1: Video window should be shown. mci.c:1732: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1733: Test failed: 1: Got destination rect (0,0)-(6,4422436), expected (1,4421676)-(0,4601984). mci.c:1739: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1740: Test failed: 1: Video window should be minimized. mci.c:1745: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1747: Test failed: 1: Got L"", expected L"abracadabra" mci.c:1750: Test failed: 1: Got MCIERR_INVALID_DEVICE_ID. mci.c:1574: Test failed: 2: Got MCIERR_INTERNAL. mci.c:1578: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1584: Test failed: 2: Video window should be shown. mci.c:1601: Test failed: 2: Got style 0 for window 0000000000000000, expected 0x14c00000. mci.c:1605: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1607: Test failed: 2: Got source rect (1,4421676)-(0,4601984), expected (0,0)-(32,24). mci.c:1613: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1621: Test failed: 2: Got destination rect (1,4421676)-(0,4601984), expected (0,0)-(32,24). mci.c:1634: Test failed: 2: Got window rect (20329664,0)-(-40659051,0), expected (20329664,0)-(20329783,180342). mci.c:1638: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1641: Test failed: 2: Got rect (1,4421676)-(0,4601984), expected (20329664,0)-(-60988715,0). mci.c:1645: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1647: Test failed: 2: Video window should be visible. mci.c:1650: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1652: Test failed: 2: Video window should be visible. mci.c:1655: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1657: Test failed: 2: Video window should be visible. mci.c:1662: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1666: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1670: Test failed: 2: Video window (0000000000000000) and child window (0000000000000000) should be different. mci.c:1674: Test failed: 2: Child window 0000000000000000: got style 0, expected 0x50000000. mci.c:1679: Test failed: 2: Video window 0000000000000000: got style 0, expected 0x4c00000. mci.c:1684: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1685: Test failed: 2: Got destination rect (63373516,0)-(0,4601984), expected (1,4421676)-(0,4601984). mci.c:1692: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1696: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1700: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1701: Test failed: 2: Got destination rect (63373516,0)-(0,2300992), expected (0,0)-(0,2300992). mci.c:1706: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1707: Test failed: 2: Main window should be shown. mci.c:1708: Test failed: 2: Video window should exist. mci.c:1714: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1715: Test failed: 2: Video window should be minimized. mci.c:1720: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1722: Test failed: 2: Got L"main", expected L"foobar" mci.c:1727: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1728: Test failed: 2: Main window should be shown. mci.c:1729: Test failed: 2: Video window should be shown. mci.c:1732: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1733: Test failed: 2: Got destination rect (0,0)-(6,4422436), expected (1,4421676)-(0,4601984). mci.c:1739: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1740: Test failed: 2: Video window should be minimized. mci.c:1745: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1747: Test failed: 2: Got L"", expected L"abracadabra" mci.c:1750: Test failed: 2: Got MCIERR_INVALID_DEVICE_ID. mci.c:1574: Test failed: 3: Got MCIERR_INTERNAL. mci.c:1578: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1584: Test failed: 3: Video window should be shown. mci.c:1601: Test failed: 3: Got style 0 for window 0000000000000000, expected 0x94880000. mci.c:1605: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1607: Test failed: 3: Got source rect (1,4421676)-(0,4601984), expected (0,0)-(32,24). mci.c:1613: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1621: Test failed: 3: Got destination rect (1,4421676)-(0,4601984), expected (0,0)-(32,24). mci.c:1634: Test failed: 3: Got window rect (20329664,0)-(-60988715,0), expected (20329664,0)-(20329783,180342). mci.c:1638: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1641: Test failed: 3: Got rect (1,4421676)-(0,4601984), expected (20329664,0)-(-81318379,0). mci.c:1645: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1647: Test failed: 3: Video window should be visible. mci.c:1650: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1652: Test failed: 3: Video window should be visible. mci.c:1655: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1657: Test failed: 3: Video window should be visible. mci.c:1662: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1666: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1670: Test failed: 3: Video window (0000000000000000) and child window (0000000000000000) should be different. mci.c:1674: Test failed: 3: Child window 0000000000000000: got style 0, expected 0x50000000. mci.c:1679: Test failed: 3: Video window 0000000000000000: got style 0, expected 0x84880000. mci.c:1684: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1685: Test failed: 3: Got destination rect (63439052,0)-(0,4601984), expected (1,4421676)-(0,4601984). mci.c:1692: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1696: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1700: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1701: Test failed: 3: Got destination rect (63439052,0)-(0,2300992), expected (0,0)-(0,2300992). mci.c:1706: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1707: Test failed: 3: Main window should be shown. mci.c:1708: Test failed: 3: Video window should exist. mci.c:1714: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1715: Test failed: 3: Video window should be minimized. mci.c:1720: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1722: Test failed: 3: Got L"main", expected L"foobar" mci.c:1727: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1728: Test failed: 3: Main window should be shown. mci.c:1729: Test failed: 3: Video window should be shown. mci.c:1732: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1733: Test failed: 3: Got destination rect (0,0)-(6,4422436), expected (1,4421676)-(0,4601984). mci.c:1739: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1740: Test failed: 3: Video window should be minimized. mci.c:1745: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1747: Test failed: 3: Got L"", expected L"abracadabra" mci.c:1750: Test failed: 3: Got MCIERR_INVALID_DEVICE_ID. mci.c:1574: Test failed: 4: Got MCIERR_INTERNAL. mci.c:1578: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1584: Test failed: 4: Video window should be shown. mci.c:1587: Test failed: 4: Got owner 0000000000000000, expected 0000000000BB019C. mci.c:1601: Test failed: 4: Got style 0 for window 0000000000000000, expected 0x14cf0000. mci.c:1605: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1607: Test failed: 4: Got source rect (1,4421676)-(0,4601984), expected (0,0)-(32,24). mci.c:1613: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1621: Test failed: 4: Got destination rect (1,4421676)-(0,4601984), expected (0,0)-(32,24). mci.c:1634: Test failed: 4: Got window rect (20329664,0)-(-81318379,0), expected (20329664,0)-(20329783,180342). mci.c:1638: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1641: Test failed: 4: Got rect (1,4421676)-(0,4601984), expected (20329664,0)-(-101648043,0). mci.c:1645: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1647: Test failed: 4: Video window should be visible. mci.c:1650: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1652: Test failed: 4: Video window should be visible. mci.c:1655: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1657: Test failed: 4: Video window should be visible. mci.c:1662: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1666: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1670: Test failed: 4: Video window (0000000000000000) and child window (0000000000000000) should be different. mci.c:1674: Test failed: 4: Child window 0000000000000000: got style 0, expected 0x50000000. mci.c:1679: Test failed: 4: Video window 0000000000000000: got style 0, expected 0x4cf0000. mci.c:1684: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1685: Test failed: 4: Got destination rect (63504588,0)-(0,4601984), expected (1,4421676)-(0,4601984). mci.c:1692: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1696: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1700: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1701: Test failed: 4: Got destination rect (63504588,0)-(0,2300992), expected (0,0)-(0,2300992). mci.c:1706: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1707: Test failed: 4: Main window should be shown. mci.c:1708: Test failed: 4: Video window should exist. mci.c:1714: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1715: Test failed: 4: Video window should be minimized. mci.c:1720: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1722: Test failed: 4: Got L"main", expected L"foobar" mci.c:1727: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1728: Test failed: 4: Main window should be shown. mci.c:1729: Test failed: 4: Video window should be shown. mci.c:1732: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1733: Test failed: 4: Got destination rect (0,0)-(6,4422436), expected (1,4421676)-(0,4601984). mci.c:1739: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1740: Test failed: 4: Video window should be minimized. mci.c:1745: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1747: Test failed: 4: Got L"", expected L"abracadabra" mci.c:1750: Test failed: 4: Got MCIERR_INVALID_DEVICE_ID. mci.c:1574: Test failed: 5: Got MCIERR_INTERNAL. mci.c:1578: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1595: Test failed: 5: Child video window should be shown. mci.c:1601: Test failed: 5: Got style 0 for window 0000000000000000, expected 0x50000000. mci.c:1605: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1607: Test failed: 5: Got source rect (1,4421676)-(0,4601984), expected (0,0)-(32,24). mci.c:1613: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1621: Test failed: 5: Got destination rect (1,4421676)-(0,4601984), expected (0,0)-(32,24). mci.c:1634: Test failed: 5: Got window rect (20329664,0)-(-101648043,0), expected (20329664,0)-(20329783,180342). mci.c:1638: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1641: Test failed: 5: Got rect (1,4421676)-(0,4601984), expected (20329664,0)-(-121977707,0). mci.c:1645: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1647: Test failed: 5: Video window should be visible. mci.c:1650: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1652: Test failed: 5: Video window should be visible. mci.c:1655: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1657: Test failed: 5: Video window should be visible. mci.c:1662: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1666: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1670: Test failed: 5: Video window (0000000000000000) and child window (0000000000000000) should be different. mci.c:1674: Test failed: 5: Child window 0000000000000000: got style 0, expected 0x50000000. mci.c:1679: Test failed: 5: Video window 0000000000000000: got style 0, expected 0x40000000. mci.c:1684: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1685: Test failed: 5: Got destination rect (63570124,0)-(0,4601984), expected (1,4421676)-(0,4601984). mci.c:1692: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1696: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1700: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1701: Test failed: 5: Got destination rect (63570124,0)-(0,2300992), expected (0,0)-(0,2300992). mci.c:1706: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1707: Test failed: 5: Main window should be shown. mci.c:1708: Test failed: 5: Video window should exist. mci.c:1714: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1715: Test failed: 5: Video window should be minimized. mci.c:1720: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1722: Test failed: 5: Got L"main", expected L"foobar" mci.c:1727: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1728: Test failed: 5: Main window should be shown. mci.c:1729: Test failed: 5: Video window should be shown. mci.c:1732: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1733: Test failed: 5: Got destination rect (0,0)-(6,4422436), expected (1,4421676)-(0,4601984). mci.c:1739: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1740: Test failed: 5: Video window should be minimized. mci.c:1745: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID. mci.c:1747: Test failed: 5: Got L"", expected L"abracadabra" mci.c:1750: Test failed: 5: Got MCIERR_INVALID_DEVICE_ID.
wmp: media.c:152: Test failed: unexpected event for PLAYSTATE, index:0 media.c:382: Test failed: IWMPControls_play failed: 80040218 media.c:384: Test failed: Timed out while waiting for media to become ready media.c:388: Test failed: Failed to transition media to playing state. media.c:742: Test failed: Failed to play media
Report validation errors: devenum:devenum crashed (c0000005) httpapi:httpapi prints too much data (81075 bytes) qcap:avico crashed (c0000005) qedit:mediadet crashed (c0000005)
This causes related test failures (various parts of Wine rely on various objects being able to be opened with zero access rights). I am fixing that, but probably not a change for the last day before the code freeze anyway.