Commit d681deb3 authored by Sven Baars's avatar Sven Baars Committed by Alexandre Julliard

mstask/tests: Wait a bit longer for tasks to start and terminate.

parent 380d31b1
...@@ -626,7 +626,7 @@ static void test_Run(void) ...@@ -626,7 +626,7 @@ static void test_Run(void)
* This is how it's supposed to look like in the application * This is how it's supposed to look like in the application
* (the loop should be infinite): * (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); hr = ITaskScheduler_Activate(scheduler, wine_test_runW, &IID_ITask, (IUnknown **)&task);
ok(hr == S_OK, "Activate error %#x\n", hr); ok(hr == S_OK, "Activate error %#x\n", hr);
...@@ -661,7 +661,7 @@ static void test_Run(void) ...@@ -661,7 +661,7 @@ static void test_Run(void)
* This is how it's supposed to look like in the application * This is how it's supposed to look like in the application
* (the loop should be infinite): * (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); hr = ITaskScheduler_Activate(scheduler, wine_test_runW, &IID_ITask, (IUnknown **)&task);
ok(hr == S_OK, "Activate error %#x\n", hr); ok(hr == S_OK, "Activate error %#x\n", hr);
......
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