From ecd17659df771f389cd77f07768f4e479dcb1ebd Mon Sep 17 00:00:00 2001 From: Aric Stewart Date: Thu, 10 Sep 2009 19:28:26 -0500 Subject: [PATCH] msctf/tests: Add wine_todo processing to sink_check_ok. --- dlls/msctf/tests/inputprocessor.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dlls/msctf/tests/inputprocessor.c b/dlls/msctf/tests/inputprocessor.c index 6267f4a17f2..ffbdbad39ef 100644 --- a/dlls/msctf/tests/inputprocessor.c +++ b/dlls/msctf/tests/inputprocessor.c @@ -121,6 +121,7 @@ static inline void _sink_fire_ok(INT *sink, const CHAR* name) static inline void _sink_check_ok(INT *sink, const CHAR* name) { int action = *sink & SINK_ACTION_MASK; + int todo = *sink & SINK_OPTION_TODO; switch (action) { @@ -132,7 +133,10 @@ static inline void _sink_check_ok(INT *sink, const CHAR* name) case SINK_IGNORE: return; default: - winetest_ok(0, "%s not fired as expected, in state %x\n",name,*sink); + if (todo) + todo_wine winetest_ok(0, "%s not fired as expected, in state %x\n",name,*sink); + else + winetest_ok(0, "%s not fired as expected, in state %x\n",name,*sink); } *sink = SINK_UNEXPECTED; }