gdiplus/tests: Test the return of GdipImageSelectActiveFrame().

Signed-off-by: Michael Stefaniuc <mstefani@redhat.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2015-10-20 09:50:08 +02:00 committed by Alexandre Julliard
parent fe0b2e131a
commit 3708d53373
1 changed files with 1 additions and 0 deletions

View File

@ -2700,6 +2700,7 @@ static void test_multiframegif(void)
expect(0, color);
stat = GdipImageSelectActiveFrame((GpImage*)bmp, &dimension, 3);
expect(Ok, stat);
stat = GdipBitmapGetPixel(bmp, 2, 0, &color);
expect(Ok, stat);
ok(color==0 || broken(color==0xff0000ff), "color = %x\n", color);