mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 09:42:07 +00:00
[CRT_APITEST] Add a tests for sin(f) / __libm_sse2_sin(f)
This commit is contained in:
parent
90f10847f7
commit
7360d0abe7
6 changed files with 397 additions and 0 deletions
|
@ -20,6 +20,7 @@ list(APPEND SOURCE
|
|||
../crt/log.c
|
||||
../crt/log10.c
|
||||
../crt/round.c
|
||||
../crt/sin.c
|
||||
testlist.c
|
||||
)
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@ extern void func_exp(void);
|
|||
extern void func_log(void);
|
||||
extern void func_log10(void);
|
||||
extern void func_round(void);
|
||||
extern void func_sin(void);
|
||||
|
||||
|
||||
const struct test winetest_testlist[] =
|
||||
|
@ -25,6 +26,7 @@ const struct test winetest_testlist[] =
|
|||
{ "log", func_log },
|
||||
{ "log10", func_log10 },
|
||||
{ "round", func_round },
|
||||
{ "sin", func_sin },
|
||||
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue