From: Nikolay Sivov <nsivov(a)codeweavers.com> Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com> --- dlls/gdiplus/tests/brush.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dlls/gdiplus/tests/brush.c b/dlls/gdiplus/tests/brush.c index f79eb7bbedc..dc374eaa65b 100644 --- a/dlls/gdiplus/tests/brush.c +++ b/dlls/gdiplus/tests/brush.c @@ -1663,8 +1663,14 @@ static void test_pathgradientblend(void) expectf(positions[i], res_positions[i]); } + res_factors[5] = 123.0f; + res_positions[5] = 456.0f; status = GdipGetPathGradientBlend(brush, res_factors, res_positions, 6); expect(Ok, status); + todo_wine + ok(res_factors[5] == 123.0f, "Unexpected value %f.\n", res_factors[5]); + todo_wine + ok(res_positions[5] == 456.0f, "Unexpected value %f.\n", res_positions[5]); status = GdipSetPathGradientBlend(brush, factors, positions, 1); expect(Ok, status); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/7280