[CRT_APITEST] Add missing static CRT tests on ARM

Addendum to c23ce9df. CORE-17604
This commit is contained in:
Stanislav Motylkov 2021-09-08 20:10:11 +03:00
parent 7f4158fc64
commit 83318b2c43
No known key found for this signature in database
GPG key ID: AFE513258CBA9E92

View file

@ -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 },