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:
parent
0d910e6ad9
commit
f7345120b1
|
@ -1,4 +1,3 @@
|
||||||
EXTRADEFS = -DWINE_NO_LONG_TYPES
|
|
||||||
TESTDLL = vcomp110.dll
|
TESTDLL = vcomp110.dll
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
|
|
@ -271,14 +271,14 @@ static void test_C2VectParallel(void)
|
||||||
pC2VectParallel(test->start, test->end, test->step, test->end_included, test->thread_count,
|
pC2VectParallel(test->start, test->end, test->step, test->end_included, test->thread_count,
|
||||||
FALSE, test_C2VectParallel_payload, 6, (void *)0xdeadbeef, test, i, FALSE);
|
FALSE, test_C2VectParallel_payload, 6, (void *)0xdeadbeef, test, i, FALSE);
|
||||||
ok(test_C2VectParallel_call_count == test->expected_call_count,
|
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, test->expected_call_count, i);
|
||||||
|
|
||||||
test_C2VectParallel_call_count = 0;
|
test_C2VectParallel_call_count = 0;
|
||||||
pC2VectParallel(test->start, test->end, test->step, test->end_included, test->thread_count,
|
pC2VectParallel(test->start, test->end, test->step, test->end_included, test->thread_count,
|
||||||
~0u, test_C2VectParallel_payload, 6, (void *)0xdeadbeef, test, i, TRUE);
|
~0u, test_C2VectParallel_payload, 6, (void *)0xdeadbeef, test, i, TRUE);
|
||||||
ok(test_C2VectParallel_call_count == test->expected_dynamic_call_count,
|
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);
|
test_C2VectParallel_call_count, test->expected_dynamic_call_count, i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue