kernel32/tests: Use ok_() so the TestBot can correctly detect the line.

Otherwise the messages appear to change every time the line count
changes, which making old errors new again.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2019-05-09 11:05:57 +02:00 committed by Alexandre Julliard
parent 1631f69022
commit 6a20bb2daf
1 changed files with 4 additions and 4 deletions

View File

@ -627,13 +627,13 @@ static NTSTATUS map_image_section( const IMAGE_NT_HEADERS *nt_header, const IMAG
{
if (!has_code && is_win64)
{
ok( mod != NULL || want_32bit || broken(il_only), /* <= win7 */
"%u: loading failed err %u\n", line, GetLastError() );
ok_(__FILE__,line)( mod != NULL || want_32bit || broken(il_only), /* <= win7 */
"loading failed err %u\n", GetLastError() );
}
else
{
ok( !mod, "%u: loading succeeded\n", line );
ok( GetLastError() == ERROR_BAD_EXE_FORMAT, "%u: wrong error %u\n", line, GetLastError() );
ok_(__FILE__, line)( !mod, "loading succeeded\n" );
ok_(__FILE__, line)( GetLastError() == ERROR_BAD_EXE_FORMAT, "wrong error %u\n", GetLastError() );
}
}
else