[4/5] gdiplus/tests: Add a test for GdipTransformRegion with an empty region path.

Dmitry Timoshkov dmitry at baikal.ru
Mon Sep 23 21:25:12 CDT 2013


---
 dlls/gdiplus/tests/region.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/dlls/gdiplus/tests/region.c b/dlls/gdiplus/tests/region.c
index a254bed..7d20c3c 100644
--- a/dlls/gdiplus/tests/region.c
+++ b/dlls/gdiplus/tests/region.c
@@ -117,6 +117,7 @@ static void test_getregiondata(void)
     DWORD buf[100];
     GpRect rect;
     GpPath *path;
+    GpMatrix *matrix;
 
     memset(buf, 0xee, sizeof(buf));
 
@@ -376,6 +377,14 @@ static void test_getregiondata(void)
     ok((*(buf + 8) & (~ 0x00004000)) == 0x00000000,
        "expected 00000000 got %08x\n", *(buf + 8) & (~ 0x00004000));
 
+    /* Transform an empty region */
+    status = GdipCreateMatrix(&matrix);
+    expect(Ok, status);
+    status = GdipTransformRegion(region, matrix);
+todo_wine
+    expect(Ok, status);
+    GdipDeleteMatrix(matrix);
+
     status = GdipDeleteRegion(region);
     expect(Ok, status);
 
-- 
1.8.3.4




More information about the wine-patches mailing list