Adam Petaccia <[EMAIL PROTECTED]> writes:

>  todo_wine
> +{
>      ok(status == Ok, "status %08x\n", status);
>  
> -    if(status != Ok) return;
> -
>      status = GdipGetRegionDataSize(region, &needed);
>      ok(status == Ok, "status %08x\n", status);
> -    ok(needed == 20, "got %d\n", needed);
> +    expect(20, needed);

This will fail randomly since needed isn't set on failure. Skipping the
test was better.

-- 
Alexandre Julliard
[EMAIL PROTECTED]


Reply via email to