Module: wine Branch: master Commit: 26f380941be0a5a3c791f6da19cecce0d087fafd URL: http://source.winehq.org/git/wine.git/?a=commit;h=26f380941be0a5a3c791f6da19...
Author: Jeff Zaroyko jeffz@jeffz.name Date: Tue Sep 29 21:33:04 2009 +1000
imm32/tests: Add another combination which should fail.
---
dlls/imm32/tests/imm32.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/dlls/imm32/tests/imm32.c b/dlls/imm32/tests/imm32.c index db1cd8d..97a7201 100644 --- a/dlls/imm32/tests/imm32.c +++ b/dlls/imm32/tests/imm32.c @@ -287,6 +287,11 @@ static void test_ImmSetCompositionString(void) todo_wine ok(!ret, "ImmSetCompositionStringW() succeeded.\n");
+ ret = ImmSetCompositionStringW(imc, SCS_SETSTR | SCS_CHANGEATTR | SCS_CHANGECLAUSE, + NULL, 0, NULL, 0); + todo_wine + ok(!ret, "ImmSetCompositionStringW() succeeded.\n"); + ImmReleaseContext(hwnd, imc); }