concrt140/tests: Build without -DWINE_NO_LONG_TYPES.

Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Piotr Caban 2022-02-11 20:51:47 +01:00 committed by Alexandre Julliard
parent d318f43559
commit c28e928006
2 changed files with 6 additions and 7 deletions

View File

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

View File

@ -187,9 +187,9 @@ static void test_Timer(void)
call_func1(p__Timer__Start, &timer);
ok(timer.timer != NULL, "timer = NULL\n");
ret = WaitForSingleObject(callback_called, 1000);
ok(ret == WAIT_OBJECT_0, "WaitForSingleObject returned %d\n", ret);
ok(ret == WAIT_OBJECT_0, "WaitForSingleObject returned %lu\n", ret);
ret = WaitForSingleObject(callback_called, 1000);
ok(ret == WAIT_OBJECT_0, "WaitForSingleObject returned %d\n", ret);
ok(ret == WAIT_OBJECT_0, "WaitForSingleObject returned %lu\n", ret);
call_func1(p__Timer__Stop, &timer);
ok(!timer.timer, "timer != NULL\n");
call_func1(p__Timer_dtor, &timer);
@ -200,9 +200,9 @@ static void test_Timer(void)
call_func1(p__Timer__Start, &timer);
ok(timer.timer != NULL, "timer = NULL\n");
ret = WaitForSingleObject(callback_called, 1000);
ok(ret == WAIT_OBJECT_0, "WaitForSingleObject returned %d\n", ret);
ok(ret == WAIT_OBJECT_0, "WaitForSingleObject returned %lu\n", ret);
ret = WaitForSingleObject(callback_called, 100);
ok(ret == WAIT_TIMEOUT, "WaitForSingleObject returned %d\n", ret);
ok(ret == WAIT_TIMEOUT, "WaitForSingleObject returned %lu\n", ret);
call_func1(p__Timer_dtor, &timer);
call_func3(p__Timer_ctor, &timer, 0, TRUE);
@ -210,9 +210,9 @@ static void test_Timer(void)
call_func1(p__Timer__Start, &timer);
ok(timer.timer != NULL, "timer = NULL\n");
ret = WaitForSingleObject(callback_called, 1000);
ok(ret == WAIT_OBJECT_0, "WaitForSingleObject returned %d\n", ret);
ok(ret == WAIT_OBJECT_0, "WaitForSingleObject returned %lu\n", ret);
ret = WaitForSingleObject(callback_called, 100);
ok(ret == WAIT_TIMEOUT, "WaitForSingleObject returned %d\n", ret);
ok(ret == WAIT_TIMEOUT, "WaitForSingleObject returned %lu\n", ret);
call_func1(p__Timer__Stop, &timer);
ok(!timer.timer, "timer != NULL\n");
call_func1(p__Timer_dtor, &timer);