Commit f7345120 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

vcomp110/tests: Enable compilation with long types.

parent 0d910e6a
EXTRADEFS = -DWINE_NO_LONG_TYPES
TESTDLL = vcomp110.dll
C_SRCS = \
......
......@@ -271,14 +271,14 @@ static void test_C2VectParallel(void)
pC2VectParallel(test->start, test->end, test->step, test->end_included, test->thread_count,
FALSE, test_C2VectParallel_payload, 6, (void *)0xdeadbeef, test, i, FALSE);
ok(test_C2VectParallel_call_count == test->expected_call_count,
"Got unexpected call count %u, expected %u, test %u.\n",
"Got unexpected call count %lu, expected %u, test %u.\n",
test_C2VectParallel_call_count, test->expected_call_count, i);
test_C2VectParallel_call_count = 0;
pC2VectParallel(test->start, test->end, test->step, test->end_included, test->thread_count,
~0u, test_C2VectParallel_payload, 6, (void *)0xdeadbeef, test, i, TRUE);
ok(test_C2VectParallel_call_count == test->expected_dynamic_call_count,
"Got unexpected call count %u, expected %u, test %u.\n",
"Got unexpected call count %lu, expected %u, test %u.\n",
test_C2VectParallel_call_count, test->expected_dynamic_call_count, i);
}
}
......
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