Module: wine Branch: master Commit: 6531b9b8af2abd2e14ffd19f552f861abcb3c471 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6531b9b8af2abd2e14ffd19f55...
Author: Michael Stefaniuc mstefani@redhat.de Date: Wed Aug 10 13:08:35 2016 +0200
comctl32/tests: Use todo_wine_if().
Signed-off-by: Michael Stefaniuc mstefani@redhat.de Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/comctl32/tests/toolbar.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/dlls/comctl32/tests/toolbar.c b/dlls/comctl32/tests/toolbar.c index efad00a..7dcdadb 100644 --- a/dlls/comctl32/tests/toolbar.c +++ b/dlls/comctl32/tests/toolbar.c @@ -1235,11 +1235,8 @@ static DWORD tbsize_alt_numtests = 0; EqualRect(&rc, &tbsize_alt_results[tbsize_alt_numtests].rcButton))) { \ win_skip("Alternate rect found\n"); \ tbsize_alt_numtests++; \ - } else if (!(mask&1)) { \ + } else todo_wine_if(mask&1) \ check_rect("button = %d, tbsize_numtests = %d", rc, res->prcButtons[i], i, tbsize_numtests); \ - } else {\ - todo_wine { check_rect("button = %d, tbsize_numtests = %d", rc, res->prcButtons[i], i, tbsize_numtests); } \ - } \ mask >>= 1; \ } \ tbsize_numtests++; \