kernel32/tests: Don't outdent todo_wine*.

This prevents -Wmisleading-indentation warnings (Mingw GCC11).

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-02-21 08:07:33 +01:00 committed by Alexandre Julliard
parent 06d399fcb0
commit 912cdec76d
2 changed files with 7 additions and 7 deletions

View File

@ -4098,14 +4098,14 @@ static void test_CreateFile(void)
ok(hfile == INVALID_HANDLE_VALUE, "CreateFile should fail\n");
if (i == 0 || i == 5)
{
/* FIXME: remove once Wine is fixed */
todo_wine_if (i == 5)
/* FIXME: remove once Wine is fixed */
todo_wine_if (i == 5)
ok(GetLastError() == ERROR_INVALID_PARAMETER, "%d: expected ERROR_INVALID_PARAMETER, got %d\n", i, GetLastError());
}
else
{
/* FIXME: remove once Wine is fixed */
todo_wine_if (i == 1)
/* FIXME: remove once Wine is fixed */
todo_wine_if (i == 1)
ok(GetLastError() == ERROR_ACCESS_DENIED, "%d: expected ERROR_ACCESS_DENIED, got %d\n", i, GetLastError());
}
@ -4116,8 +4116,8 @@ todo_wine_if (i == 1)
ok(GetLastError() == ERROR_INVALID_PARAMETER, "%d: expected ERROR_INVALID_PARAMETER, got %d\n", i, GetLastError());
else
{
/* FIXME: remove once Wine is fixed */
todo_wine_if (i == 1)
/* FIXME: remove once Wine is fixed */
todo_wine_if (i == 1)
ok(GetLastError() == ERROR_ACCESS_DENIED, "%d: expected ERROR_ACCESS_DENIED, got %d\n", i, GetLastError());
}
}

View File

@ -3833,7 +3833,7 @@ static void test_process_info(HANDLE hproc)
ok(status == STATUS_SUCCESS || status == STATUS_INVALID_PARAMETER,
"for info %u, got %08x (ret_len %u)\n", i, status, ret_len);
else
todo_wine
todo_wine
ok(status == STATUS_ACCESS_DENIED,
"for info %u expected STATUS_ACCESS_DENIED, got %08x (ret_len %u)\n", i, status, ret_len);
break;