From d681deb3e5cff310ed3966f670ca2119e581975c Mon Sep 17 00:00:00 2001 From: Sven Baars Date: Sat, 26 Oct 2019 00:06:20 +0200 Subject: [PATCH] mstask/tests: Wait a bit longer for tasks to start and terminate. Signed-off-by: Sven Baars Signed-off-by: Alexandre Julliard --- dlls/mstask/tests/task.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/mstask/tests/task.c b/dlls/mstask/tests/task.c index 6195194d611..a9957117e9b 100644 --- a/dlls/mstask/tests/task.c +++ b/dlls/mstask/tests/task.c @@ -626,7 +626,7 @@ static void test_Run(void) * This is how it's supposed to look like in the application * (the loop should be infinite): */ - for (i = 0; i < 3; i++) + for (i = 0; i < 5; i++) { hr = ITaskScheduler_Activate(scheduler, wine_test_runW, &IID_ITask, (IUnknown **)&task); ok(hr == S_OK, "Activate error %#x\n", hr); @@ -661,7 +661,7 @@ static void test_Run(void) * This is how it's supposed to look like in the application * (the loop should be infinite): */ - for (i = 0; i < 3; i++) + for (i = 0; i < 5; i++) { hr = ITaskScheduler_Activate(scheduler, wine_test_runW, &IID_ITask, (IUnknown **)&task); ok(hr == S_OK, "Activate error %#x\n", hr);