Skip to content
Snippets Groups Projects
Commit e40e5661 authored by Sebastian Lackner's avatar Sebastian Lackner Committed by Alexandre Julliard
Browse files

ntdll/tests: Add/remove todo_wine to avoid test failures.

parent f4f8679a
No related branches found
No related tags found
No related merge requests found
...@@ -469,13 +469,12 @@ static void test_cancelio(void) ...@@ -469,13 +469,12 @@ static void test_cancelio(void)
ok(res == STATUS_PENDING, "NtFsControlFile returned %x\n", res); ok(res == STATUS_PENDING, "NtFsControlFile returned %x\n", res);
res = pNtCancelIoFile(hPipe, &cancel_sb); res = pNtCancelIoFile(hPipe, &cancel_sb);
todo_wine ok(!res, "NtCancelIoFile returned %x\n", res); ok(!res, "NtCancelIoFile returned %x\n", res);
todo_wine { ok(U(iosb).Status == STATUS_CANCELLED, "Wrong iostatus %x\n", U(iosb).Status);
ok(U(iosb).Status == STATUS_CANCELLED, "Wrong iostatus %x\n", U(iosb).Status); ok(WaitForSingleObject(hEvent, 0) == 0, "hEvent not signaled\n");
ok(WaitForSingleObject(hEvent, 0) == 0, "hEvent not signaled\n");
}
todo_wine
ok(!ioapc_called, "IOAPC ran too early\n"); ok(!ioapc_called, "IOAPC ran too early\n");
SleepEx(0, TRUE); /* alertable wait state */ SleepEx(0, TRUE); /* alertable wait state */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment