Commit 6c7dd939 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

ole32/tests: Mark the draw_continue callbacks as optional. Win9x can skip calls…

ole32/tests: Mark the draw_continue callbacks as optional. Win9x can skip calls under low-load conditions.
parent d65e1f2d
......@@ -1116,7 +1116,7 @@ static void test_data_cache(void)
{
{ "AdviseSink_OnViewChange", 0 },
{ "AdviseSink_OnViewChange", 0 },
{ "draw_continue", 0 },
{ "draw_continue", 1 },
{ "DataObject_DAdvise", 0 },
{ "DataObject_DAdvise", 0 },
{ "DataObject_DUnadvise", 0 },
......@@ -1126,9 +1126,9 @@ static void test_data_cache(void)
static const struct expected_method methods_cacheload[] =
{
{ "AdviseSink_OnViewChange", 0 },
{ "draw_continue", 0 },
{ "draw_continue", 0 },
{ "draw_continue", 0 },
{ "draw_continue", 1 },
{ "draw_continue", 1 },
{ "draw_continue", 1 },
{ "DataObject_GetData", 0 },
{ "DataObject_GetData", 0 },
{ "DataObject_GetData", 0 },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment