vcomp110/tests: Enable compilation with long types.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-03-08 09:31:17 +01:00 committed by Alexandre Julliard
parent 0d910e6ad9
commit f7345120b1
2 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,3 @@
EXTRADEFS = -DWINE_NO_LONG_TYPES
TESTDLL = vcomp110.dll
C_SRCS = \

View File

@ -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);
}
}