[PATCH v2 02/10] comctl32/tests: Test negative SetCount for listboxes

Gabriel Ivăncescu gabrielopcode at gmail.com
Mon Feb 11 11:06:54 CST 2019


Damn I just realized this after I sent it that it may fail because we 
don't have LBS_NODATA implemented yet, and I shouldn't have re-ordered 
it. My bad :-/

If nothing else is wrong with the patch series, can you please just move 
this patch to the end of the series?

On 2/11/19 7:03 PM, Gabriel Ivăncescu wrote:
> Signed-off-by: Gabriel Ivăncescu <gabrielopcode at gmail.com>
> ---
>   dlls/comctl32/tests/listbox.c | 5 +++++
>   1 file changed, 5 insertions(+)
> 
> diff --git a/dlls/comctl32/tests/listbox.c b/dlls/comctl32/tests/listbox.c
> index 68e4073..58de614 100644
> --- a/dlls/comctl32/tests/listbox.c
> +++ b/dlls/comctl32/tests/listbox.c
> @@ -1867,6 +1867,11 @@ static void test_set_count( void )
>       GetUpdateRect( listbox, &r, TRUE );
>       ok( !IsRectEmpty( &r ), "got empty rect\n");
>   
> +    ret = SendMessageA( listbox, LB_SETCOUNT, -5, 0 );
> +    ok( ret == 0, "got %d\n", ret );
> +    ret = SendMessageA( listbox, LB_GETCOUNT, 0, 0 );
> +    ok( ret == -5, "got %d\n", ret );
> +
>       DestroyWindow( listbox );
>   
>       for (i = 0; i < ARRAY_SIZE(styles); ++i)
> 




More information about the wine-devel mailing list