mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[CRT_APITEST] Add missing static CRT tests on ARM
Addendum to c23ce9df
. CORE-17604
This commit is contained in:
parent
7f4158fc64
commit
83318b2c43
1 changed files with 10 additions and 6 deletions
|
@ -4,12 +4,16 @@
|
|||
#include <apitest.h>
|
||||
|
||||
#if defined(TEST_MSVCRT)
|
||||
extern void func___rt_div(void);
|
||||
extern void func___fto64(void);
|
||||
extern void func__vscprintf(void);
|
||||
extern void func__vscwprintf(void);
|
||||
extern void func_atexit(void);
|
||||
#endif
|
||||
#if defined(TEST_STATIC_CRT) || defined(TEST_MSVCRT)
|
||||
#if defined(_M_ARM)
|
||||
extern void func___rt_div(void);
|
||||
extern void func___fto64(void);
|
||||
#endif
|
||||
#endif
|
||||
#if defined(TEST_NTDLL)
|
||||
extern void func__vscwprintf(void);
|
||||
#endif
|
||||
|
@ -55,7 +59,10 @@ const struct test winetest_testlist[] =
|
|||
// ...
|
||||
#endif
|
||||
#if defined(TEST_STATIC_CRT) || defined(TEST_MSVCRT)
|
||||
// ...
|
||||
#if defined(_M_ARM)
|
||||
{ "__rt_div", func___rt_div },
|
||||
{ "__fto64", func___fto64 },
|
||||
#endif
|
||||
#endif
|
||||
#if defined(TEST_STATIC_CRT)
|
||||
#elif defined(TEST_MSVCRT)
|
||||
|
@ -63,9 +70,6 @@ const struct test winetest_testlist[] =
|
|||
{ "crtdata", func_crtdata },
|
||||
#if defined(_M_IX86)
|
||||
{ "__getmainargs", func___getmainargs },
|
||||
#elif defined(_M_ARM)
|
||||
{ "__rt_div", func___rt_div },
|
||||
{ "__fto64", func___fto64 },
|
||||
#endif
|
||||
{ "_vscprintf", func__vscprintf },
|
||||
{ "_vscwprintf", func__vscwprintf },
|
||||
|
|
Loading…
Reference in a new issue