Module: wine Branch: master Commit: 3708d5337391b4da0686757a81bfadb2a280d45a URL: http://source.winehq.org/git/wine.git/?a=commit;h=3708d5337391b4da0686757a81...
Author: Michael Stefaniuc mstefani@redhat.de Date: Tue Oct 20 09:50:08 2015 +0200
gdiplus/tests: Test the return of GdipImageSelectActiveFrame().
Signed-off-by: Michael Stefaniuc mstefani@redhat.de Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/gdiplus/tests/image.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/gdiplus/tests/image.c b/dlls/gdiplus/tests/image.c index 51b99a3..6fc208e 100644 --- a/dlls/gdiplus/tests/image.c +++ b/dlls/gdiplus/tests/image.c @@ -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);