find/tests: Enable compilation with long types.
Signed-off-by: Eric Pouech <eric.pouech@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7783f021fb
commit
18100a15a0
|
@ -1,4 +1,3 @@
|
|||
EXTRADEFS = -DWINE_NO_LONG_TYPES
|
||||
TESTDLL = find.exe
|
||||
IMPORTS = user32
|
||||
|
||||
|
|
|
@ -174,7 +174,7 @@ static void run_find_stdin_(const WCHAR *commandline, const BYTE *input, int inp
|
|||
|
||||
check_find_output(child_output, child_output_len, out_expected, out_expected_len, file, line);
|
||||
|
||||
ok_(file, line)(exitcode == exitcode_expected, "Expected exitcode %d, got %d\n", exitcode_expected, exitcode);
|
||||
ok_(file, line)(exitcode == exitcode_expected, "Expected exitcode %d, got %ld\n", exitcode_expected, exitcode);
|
||||
|
||||
heap_free(child_output);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue