Re: msvcrt: Add bsearch_s implementation by reusing code and tests from ntdll (resend)

2012-07-25 Thread Marvin
Hi,

While running your changed tests on Windows, I think I found new failures.
Being a bot and all I'm not very good at pattern recognition, so I might be
wrong, but could you please double-check?
Full results can be found at
http://winetestbot.dolphin/JobDetails.pl?Key=110

Your paranoid android.


=== debiantesting (build) ===
Patch failed to apply





Re: msvcrt: Add bsearch_s implementation by reusing code and tests from ntdll (resend)

2012-07-11 Thread Alexandre Julliard
André Hentschel  writes:

> @@ -39,10 +44,19 @@ static void init(void)
>  pmemcpy_s = (void*)GetProcAddress(hmod, "memcpy_s");
>  pI10_OUTPUT = (void*)GetProcAddress(hmod, "$I10_OUTPUT");
>  pstrerror_s = (void *)GetProcAddress(hmod, "strerror_s");
> +pbsearch_s = (void *)GetProcAddress(hmod, "bsearch_s");
>  p_get_doserrno = (void *)GetProcAddress(hmod, "_get_doserrno");
>  p_get_errno = (void *)GetProcAddress(hmod, "_get_errno");
>  p_set_doserrno = (void *)GetProcAddress(hmod, "_set_doserrno");
>  p_set_errno = (void *)GetProcAddress(hmod, "_set_errno");
> +p_set_invalid_parameter_handler = (void *)GetProcAddress(hmod, 
> "_set_invalid_parameter_handler");

set_invalid_parameter_handler is not exported in native so this won't
test anything.

-- 
Alexandre Julliard
julli...@winehq.org