[PATCH 2/2] Added ui64tow_s tests for msvcrt (msvcr80, 90 and 100 benefits from this) (resend)

Alexandre Julliard julliard at winehq.org
Wed Dec 29 04:04:18 CST 2010


Arno Teigseth <arnotixe at gmail.com> writes:

> @@ -47,9 +76,16 @@ static void __cdecl test_invalid_parameter_handler(const wchar_t *expression,
>          const wchar_t *function, const wchar_t *file,
>          unsigned line, uintptr_t arg)
>  {
> -    /* we just ignore handler calls */
> +    /* we USED TO just ignore handler calls */
> +    CHECK_EXPECT(invalid_parameter_handler);
> +    ok(expression == NULL, "expression is not NULL\n");
> +    ok(function == NULL, "function is not NULL\n");
> +    ok(file == NULL, "file is not NULL\n");
> +    ok(line == 0, "line = %u\n", line);
> +    ok(arg == 0, "arg = %lx\n", (UINT_PTR)arg);

msvcrt doesn't allow changing the handler. Invalid parameter tests have
to be in msvcr90.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list