| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408 |
- /**
- * Math test suite
- */
- #include <math.h>
- #include "SDL.h"
- #include "SDL_test.h"
- /* Range tests parameters */
- #define RANGE_TEST_ITERATIONS 10000000
- #define RANGE_TEST_STEP SDL_MAX_UINT32 / RANGE_TEST_ITERATIONS
- /* Define the Euler constant */
- #ifndef M_E
- #define EULER 2.7182818284590450907955982984276488423347473144531250
- #else
- #define EULER M_E
- #endif
- /* ================= Test Structs ================== */
- /**
- * Stores a single input and the expected result
- */
- typedef struct
- {
- double input;
- double expected;
- } d_to_d;
- /**
- * Stores a pair of inputs and the expected result
- */
- typedef struct
- {
- double x_input, y_input;
- double expected;
- } dd_to_d;
- /*
- NB: You cannot create an array of these structures containing INFINITY or NAN.
- On platforms such as OS/2, they are defined as 'extern const double' making them
- not compile-time constant.
- */
- /* ================= Test Helpers ================== */
- typedef double(SDLCALL *d_to_d_func)(double);
- typedef double(SDLCALL *dd_to_d_func)(double, double);
- /**
- * \brief Runs all the cases on a given function with a signature double -> double
- *
- * \param func_name, the name of the tested function.
- * \param func, the function to call.
- * \param cases, an array of all the cases.
- * \param cases_size, the size of the cases array.
- */
- static int
- helper_dtod(const char *func_name, d_to_d_func func,
- const d_to_d *cases, const size_t cases_size)
- {
- Uint32 i;
- for (i = 0; i < cases_size; i++) {
- const double result = func(cases[i].input);
- SDLTest_AssertCheck(result == cases[i].expected,
- "%s(%f), expected %f, got %f",
- func_name,
- cases[i].input,
- cases[i].expected, result);
- }
- return TEST_COMPLETED;
- }
- /**
- * \brief Runs all the cases on a given function with a signature (double, double) -> double
- *
- * \param func_name, the name of the tested function.
- * \param func, the function to call.
- * \param cases, an array of all the cases.
- * \param cases_size, the size of the cases array.
- */
- static int
- helper_ddtod(const char *func_name, dd_to_d_func func,
- const dd_to_d *cases, const size_t cases_size)
- {
- Uint32 i;
- for (i = 0; i < cases_size; i++) {
- const double result = func(cases[i].x_input, cases[i].y_input);
- SDLTest_AssertCheck(result == cases[i].expected,
- "%s(%f,%f), expected %f, got %f",
- func_name,
- cases[i].x_input, cases[i].y_input,
- cases[i].expected, result);
- }
- return TEST_COMPLETED;
- }
- /**
- * \brief Runs a range of values on a given function with a signature double -> double
- *
- * This function is only meant to test functions that returns the input value if it is
- * integral: f(x) -> x for x in N.
- *
- * \param func_name, the name of the tested function.
- * \param func, the function to call.
- */
- static int
- helper_range(const char *func_name, d_to_d_func func)
- {
- Uint32 i;
- double test_value = 0.0;
- SDLTest_AssertPass("%s: Testing a range of %u values with steps of %u",
- func_name,
- RANGE_TEST_ITERATIONS,
- RANGE_TEST_STEP);
- for (i = 0; i < RANGE_TEST_ITERATIONS; i++, test_value += RANGE_TEST_STEP) {
- double result;
- /* These are tested elsewhere */
- if (isnan(test_value) || isinf(test_value)) {
- continue;
- }
- result = func(test_value);
- if (result != test_value) { /* Only log failures to save performances */
- SDLTest_AssertPass("%s(%.1f), expected %.1f, got %.1f",
- func_name, test_value,
- test_value, result);
- return TEST_ABORTED;
- }
- }
- return TEST_COMPLETED;
- }
- /* ================= Test Case Implementation ================== */
- /* SDL_floor tests functions */
- /**
- * \brief Checks positive and negative infinity.
- */
- static int
- floor_infCases(void *args)
- {
- double result;
- result = SDL_floor(INFINITY);
- SDLTest_AssertCheck(INFINITY == result,
- "Floor(%f), expected %f, got %f",
- INFINITY, INFINITY, result);
- result = SDL_floor(-INFINITY);
- SDLTest_AssertCheck(-INFINITY == result,
- "Floor(%f), expected %f, got %f",
- -INFINITY, -INFINITY, result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks positive and negative zero.
- */
- static int
- floor_zeroCases(void *args)
- {
- const d_to_d zero_cases[] = { { 0.0, 0.0 }, { -0.0, -0.0 } };
- return helper_dtod("Floor", SDL_floor, zero_cases, SDL_arraysize(zero_cases));
- }
- /**
- * \brief Checks the NaN case.
- */
- static int
- floor_nanCase(void *args)
- {
- const double result = SDL_floor(NAN);
- SDLTest_AssertCheck(isnan(result),
- "Floor(nan), expected nan, got %f",
- result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks round values (x.0) for themselves
- */
- static int
- floor_roundNumbersCases(void *args)
- {
- const d_to_d round_cases[] = {
- { 1.0, 1.0 },
- { -1.0, -1.0 },
- { 15.0, 15.0 },
- { -15.0, -15.0 },
- { 125.0, 125.0 },
- { -125.0, -125.0 },
- { 1024.0, 1024.0 },
- { -1024.0, -1024.0 }
- };
- return helper_dtod("Floor", SDL_floor, round_cases, SDL_arraysize(round_cases));
- }
- /**
- * \brief Checks a set of fractions
- */
- static int
- floor_fractionCases(void *args)
- {
- const d_to_d frac_cases[] = {
- { 1.0 / 2.0, 0.0 },
- { -1.0 / 2.0, -1.0 },
- { 4.0 / 3.0, 1.0 },
- { -4.0 / 3.0, -2.0 },
- { 76.0 / 7.0, 10.0 },
- { -76.0 / 7.0, -11.0 },
- { 535.0 / 8.0, 66.0 },
- { -535.0 / 8.0, -67.0 },
- { 19357.0 / 53.0, 365.0 },
- { -19357.0 / 53.0, -366.0 }
- };
- return helper_dtod("Floor", SDL_floor, frac_cases, SDL_arraysize(frac_cases));
- }
- /**
- * \brief Checks a range of values between 0 and UINT32_MAX
- */
- static int
- floor_rangeTest(void *args)
- {
- return helper_range("Floor", SDL_floor);
- }
- /* SDL_ceil tests functions */
- /**
- * \brief Checks positive and negative infinity.
- */
- static int
- ceil_infCases(void *args)
- {
- double result;
- result = SDL_ceil(INFINITY);
- SDLTest_AssertCheck(INFINITY == result,
- "Ceil(%f), expected %f, got %f",
- INFINITY, INFINITY, result);
- result = SDL_ceil(-INFINITY);
- SDLTest_AssertCheck(-INFINITY == result,
- "Ceil(%f), expected %f, got %f",
- -INFINITY, -INFINITY, result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks positive and negative zero.
- */
- static int
- ceil_zeroCases(void *args)
- {
- const d_to_d zero_cases[] = { { 0.0, 0.0 }, { -0.0, -0.0 } };
- return helper_dtod("Ceil", SDL_ceil, zero_cases, SDL_arraysize(zero_cases));
- }
- /**
- * \brief Checks the NaN case.
- */
- static int
- ceil_nanCase(void *args)
- {
- const double result = SDL_ceil(NAN);
- SDLTest_AssertCheck(isnan(result),
- "Ceil(nan), expected nan, got %f",
- result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks round values (x.0) for themselves
- */
- static int
- ceil_roundNumbersCases(void *args)
- {
- const d_to_d round_cases[] = {
- { 1.0, 1.0 },
- { -1.0, -1.0 },
- { 15.0, 15.0 },
- { -15.0, -15.0 },
- { 125.0, 125.0 },
- { -125.0, -125.0 },
- { 1024.0, 1024.0 },
- { -1024.0, -1024.0 }
- };
- return helper_dtod("Ceil", SDL_ceil, round_cases, SDL_arraysize(round_cases));
- }
- /**
- * \brief Checks a set of fractions
- */
- static int
- ceil_fractionCases(void *args)
- {
- const d_to_d frac_cases[] = {
- { 1.0 / 2.0, 1.0 },
- { -1.0 / 2.0, -0.0 },
- { 4.0 / 3.0, 2.0 },
- { -4.0 / 3.0, -1.0 },
- { 76.0 / 7.0, 11.0 },
- { -76.0 / 7.0, -10.0 },
- { 535.0 / 8.0, 67.0 },
- { -535.0 / 8.0, -66.0 },
- { 19357.0 / 53.0, 366.0 },
- { -19357.0 / 53.0, -365.0 }
- };
- return helper_dtod("Ceil", SDL_ceil, frac_cases, SDL_arraysize(frac_cases));
- }
- /**
- * \brief Checks a range of values between 0 and UINT32_MAX
- */
- static int
- ceil_rangeTest(void *args)
- {
- return helper_range("Ceil", SDL_ceil);
- }
- /* SDL_trunc tests functions */
- /**
- * \brief Checks positive and negative infinity.
- */
- static int
- trunc_infCases(void *args)
- {
- double result;
- result = SDL_trunc(INFINITY);
- SDLTest_AssertCheck(INFINITY == result,
- "Trunc(%f), expected %f, got %f",
- INFINITY, INFINITY, result);
- result = SDL_trunc(-INFINITY);
- SDLTest_AssertCheck(-INFINITY == result,
- "Trunc(%f), expected %f, got %f",
- -INFINITY, -INFINITY, result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks positive and negative zero.
- */
- static int
- trunc_zeroCases(void *args)
- {
- const d_to_d zero_cases[] = { { 0.0, 0.0 }, { -0.0, -0.0 } };
- return helper_dtod("Trunc", SDL_trunc, zero_cases, SDL_arraysize(zero_cases));
- }
- /**
- * \brief Checks the NaN case.
- */
- static int
- trunc_nanCase(void *args)
- {
- const double result = SDL_trunc(NAN);
- SDLTest_AssertCheck(isnan(result),
- "Trunc(nan), expected nan, got %f",
- result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks round values (x.0) for themselves
- */
- static int
- trunc_roundNumbersCases(void *args)
- {
- const d_to_d round_cases[] = {
- { 1.0, 1.0 },
- { -1.0, -1.0 },
- { 15.0, 15.0 },
- { -15.0, -15.0 },
- { 125.0, 125.0 },
- { -125.0, -125.0 },
- { 1024.0, 1024.0 },
- { -1024.0, -1024.0 }
- };
- return helper_dtod("Trunc", SDL_trunc, round_cases, SDL_arraysize(round_cases));
- }
- /**
- * \brief Checks a set of fractions
- */
- static int
- trunc_fractionCases(void *args)
- {
- const d_to_d frac_cases[] = {
- { 1.0 / 2.0, 0.0 },
- { -1.0 / 2.0, -0.0 },
- { 4.0 / 3.0, 1.0 },
- { -4.0 / 3.0, -1.0 },
- { 76.0 / 7.0, 10.0 },
- { -76.0 / 7.0, -10.0 },
- { 535.0 / 8.0, 66.0 },
- { -535.0 / 8.0, -66.0 },
- { 19357.0 / 53.0, 365.0 },
- { -19357.0 / 53.0, -365.0 }
- };
- return helper_dtod("Trunc", SDL_trunc, frac_cases, SDL_arraysize(frac_cases));
- }
- /**
- * \brief Checks a range of values between 0 and UINT32_MAX
- */
- static int
- trunc_rangeTest(void *args)
- {
- return helper_range("Trunc", SDL_trunc);
- }
- /* SDL_round tests functions */
- /**
- * \brief Checks positive and negative infinity.
- */
- static int
- round_infCases(void *args)
- {
- double result;
- result = SDL_round(INFINITY);
- SDLTest_AssertCheck(INFINITY == result,
- "Round(%f), expected %f, got %f",
- INFINITY, INFINITY, result);
- result = SDL_round(-INFINITY);
- SDLTest_AssertCheck(-INFINITY == result,
- "Round(%f), expected %f, got %f",
- -INFINITY, -INFINITY, result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks positive and negative zero.
- */
- static int
- round_zeroCases(void *args)
- {
- const d_to_d zero_cases[] = { { 0.0, 0.0 }, { -0.0, -0.0 } };
- return helper_dtod("Round", SDL_round, zero_cases, SDL_arraysize(zero_cases));
- }
- /**
- * \brief Checks the NaN case.
- */
- static int
- round_nanCase(void *args)
- {
- const double result = SDL_round(NAN);
- SDLTest_AssertCheck(isnan(result),
- "Round(nan), expected nan, got %f",
- result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks round values (x.0) for themselves
- */
- static int
- round_roundNumbersCases(void *args)
- {
- const d_to_d round_cases[] = {
- { 1.0, 1.0 },
- { -1.0, -1.0 },
- { 15.0, 15.0 },
- { -15.0, -15.0 },
- { 125.0, 125.0 },
- { -125.0, -125.0 },
- { 1024.0, 1024.0 },
- { -1024.0, -1024.0 }
- };
- return helper_dtod("Round", SDL_round, round_cases, SDL_arraysize(round_cases));
- }
- /**
- * \brief Checks a set of fractions
- */
- static int
- round_fractionCases(void *args)
- {
- const d_to_d frac_cases[] = {
- { 1.0 / 2.0, 1.0 },
- { -1.0 / 2.0, -1.0 },
- { 4.0 / 3.0, 1.0 },
- { -4.0 / 3.0, -1.0 },
- { 76.0 / 7.0, 11.0 },
- { -76.0 / 7.0, -11.0 },
- { 535.0 / 8.0, 67.0 },
- { -535.0 / 8.0, -67.0 },
- { 19357.0 / 53.0, 365.0 },
- { -19357.0 / 53.0, -365.0 }
- };
- return helper_dtod("Round", SDL_round, frac_cases, SDL_arraysize(frac_cases));
- }
- /**
- * \brief Checks a range of values between 0 and UINT32_MAX
- */
- static int
- round_rangeTest(void *args)
- {
- return helper_range("Round", SDL_round);
- }
- /* SDL_fabs tests functions */
- /**
- * \brief Checks positive and negative infinity.
- */
- static int
- fabs_infCases(void *args)
- {
- double result;
- result = SDL_fabs(INFINITY);
- SDLTest_AssertCheck(INFINITY == result,
- "Fabs(%f), expected %f, got %f",
- INFINITY, INFINITY, result);
- result = SDL_fabs(-INFINITY);
- SDLTest_AssertCheck(INFINITY == result,
- "Fabs(%f), expected %f, got %f",
- -INFINITY, INFINITY, result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks positive and negative zero
- */
- static int
- fabs_zeroCases(void *args)
- {
- const d_to_d zero_cases[] = { { 0.0, 0.0 }, { -0.0, 0.0 } };
- return helper_dtod("Fabs", SDL_fabs, zero_cases, SDL_arraysize(zero_cases));
- }
- /**
- * \brief Checks the NaN case.
- */
- static int
- fabs_nanCase(void *args)
- {
- const double result = SDL_fabs(NAN);
- SDLTest_AssertCheck(isnan(result),
- "Fabs(nan), expected nan, got %f",
- result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks a range of values between 0 and UINT32_MAX
- */
- static int
- fabs_rangeTest(void *args)
- {
- return helper_range("Fabs", SDL_fabs);
- }
- /* SDL_copysign tests functions */
- /**
- * \brief Checks positive and negative inifnity.
- */
- static int
- copysign_infCases(void *args)
- {
- double result;
- result = SDL_copysign(INFINITY, -1.0);
- SDLTest_AssertCheck(-INFINITY == result,
- "Copysign(%f,%.1f), expected %f, got %f",
- INFINITY, -1.0, -INFINITY, result);
- result = SDL_copysign(INFINITY, 1.0);
- SDLTest_AssertCheck(INFINITY == result,
- "Copysign(%f,%.1f), expected %f, got %f",
- INFINITY, 1.0, INFINITY, result);
- result = SDL_copysign(-INFINITY, -1.0);
- SDLTest_AssertCheck(-INFINITY == result,
- "Copysign(%f,%.1f), expected %f, got %f",
- -INFINITY, -1.0, -INFINITY, result);
- result = SDL_copysign(-INFINITY, 1.0);
- SDLTest_AssertCheck(INFINITY == result,
- "Copysign(%f,%.1f), expected %f, got %f",
- -INFINITY, 1.0, INFINITY, result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks positive and negative zero.
- */
- static int
- copysign_zeroCases(void *args)
- {
- const dd_to_d zero_cases[] = {
- { 0.0, 1.0, 0.0 },
- { 0.0, -1.0, -0.0 },
- { -0.0, 1.0, 0.0 },
- { -0.0, -1.0, -0.0 }
- };
- return helper_ddtod("Copysign", SDL_copysign, zero_cases, SDL_arraysize(zero_cases));
- }
- /**
- * \brief Checks the NaN cases.
- */
- static int
- copysign_nanCases(void *args)
- {
- double result;
- result = SDL_copysign(NAN, 1.0);
- SDLTest_AssertCheck(isnan(result),
- "Copysign(nan,1.0), expected nan, got %f",
- result);
- result = SDL_copysign(NAN, -1.0);
- SDLTest_AssertCheck(isnan(result),
- "Copysign(nan,-1.0), expected nan, got %f",
- result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks a range of values between 0 and UINT32_MAX
- */
- static int
- copysign_rangeTest(void *args)
- {
- Uint32 i;
- double test_value = 0.0;
- SDLTest_AssertPass("Copysign: Testing a range of %u values with steps of %u",
- RANGE_TEST_ITERATIONS,
- RANGE_TEST_STEP);
- for (i = 0; i < RANGE_TEST_ITERATIONS; i++, test_value += RANGE_TEST_STEP) {
- double result;
- /* These are tested elsewhere */
- if (isnan(test_value) || isinf(test_value)) {
- continue;
- }
- /* Only log failures to save performances */
- result = SDL_copysign(test_value, 1.0);
- if (result != test_value) {
- SDLTest_AssertPass("Copysign(%.1f,%.1f), expected %.1f, got %.1f",
- test_value, 1.0,
- test_value, result);
- return TEST_ABORTED;
- }
- result = SDL_copysign(test_value, -1.0);
- if (result != -test_value) {
- SDLTest_AssertPass("Copysign(%.1f,%.1f), expected %.1f, got %.1f",
- test_value, -1.0,
- -test_value, result);
- return TEST_ABORTED;
- }
- }
- return TEST_COMPLETED;
- }
- /* SDL_fmod tests functions */
- /**
- * \brief Checks division of positive and negative inifnity.
- */
- static int
- fmod_divOfInfCases(void *args)
- {
- double result;
- result = SDL_fmod(INFINITY, -1.0);
- SDLTest_AssertCheck(isnan(result),
- "Fmod(%f,%.1f), expected %f, got %f",
- INFINITY, -1.0, NAN, result);
- result = SDL_fmod(INFINITY, 1.0);
- SDLTest_AssertCheck(isnan(result),
- "Fmod(%f,%.1f), expected %f, got %f",
- INFINITY, 1.0, NAN, result);
- result = SDL_fmod(-INFINITY, -1.0);
- SDLTest_AssertCheck(isnan(result),
- "Fmod(%f,%.1f), expected %f, got %f",
- -INFINITY, -1.0, NAN, result);
- result = SDL_fmod(-INFINITY, 1.0);
- SDLTest_AssertCheck(isnan(result),
- "Fmod(%f,%.1f), expected %f, got %f",
- -INFINITY, 1.0, NAN, result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks division by positive and negative inifnity.
- */
- static int
- fmod_divByInfCases(void *args)
- {
- double result;
- result = SDL_fmod(1.0, INFINITY);
- SDLTest_AssertCheck(1.0 == result,
- "Fmod(%.1f,%f), expected %f, got %f",
- 1.0, INFINITY, 1.0, result);
- result = SDL_fmod(-1.0, INFINITY);
- SDLTest_AssertCheck(-1.0 == result,
- "Fmod(%.1f,%f), expected %f, got %f",
- -1.0, INFINITY, -1.0, result);
- result = SDL_fmod(1.0, -INFINITY);
- SDLTest_AssertCheck(1.0 == result,
- "Fmod(%.1f,%f), expected %f, got %f",
- 1.0, -INFINITY, 1.0, result);
- result = SDL_fmod(-1.0, -INFINITY);
- SDLTest_AssertCheck(-1.0 == result,
- "Fmod(%.1f,%f), expected %f, got %f",
- -1.0, -INFINITY, -1.0, result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks division of positive and negative zero.
- */
- static int
- fmod_divOfZeroCases(void *args)
- {
- const dd_to_d zero_cases[] = {
- { 0.0, 1.0, 0.0 },
- { 0.0, -1.0, 0.0 },
- { -0.0, 1.0, -0.0 },
- { -0.0, -1.0, -0.0 }
- };
- return helper_ddtod("Fmod", SDL_fmod, zero_cases, SDL_arraysize(zero_cases));
- }
- /**
- * \brief Checks division by positive and negative zero.
- */
- static int
- fmod_divByZeroCases(void *args)
- {
- double result;
- result = SDL_fmod(1.0, 0.0);
- SDLTest_AssertCheck(isnan(result),
- "Fmod(1.0,0.0), expected nan, got %f",
- result);
- result = SDL_fmod(-1.0, 0.0);
- SDLTest_AssertCheck(isnan(result),
- "Fmod(-1.0,0.0), expected nan, got %f",
- result);
- result = SDL_fmod(1.0, -0.0);
- SDLTest_AssertCheck(isnan(result),
- "Fmod(1.0,-0.0), expected nan, got %f",
- result);
- result = SDL_fmod(-1.0, -0.0);
- SDLTest_AssertCheck(isnan(result),
- "Fmod(-1.0,-0.0), expected nan, got %f",
- result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks the NaN cases.
- */
- static int
- fmod_nanCases(void *args)
- {
- double result;
- result = SDL_fmod(NAN, 1.0);
- SDLTest_AssertCheck(isnan(result),
- "Fmod(nan,1.0), expected nan, got %f",
- result);
- result = SDL_fmod(NAN, -1.0);
- SDLTest_AssertCheck(isnan(result),
- "Fmod(nan,-1.0), expected nan, got %f",
- result);
- result = SDL_fmod(1.0, NAN);
- SDLTest_AssertCheck(isnan(result),
- "Fmod(1.0,nan), expected nan, got %f",
- result);
- result = SDL_fmod(-1.0, NAN);
- SDLTest_AssertCheck(isnan(result),
- "Fmod(-1.0,nan), expected nan, got %f",
- result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks a set of regular values.
- */
- static int
- fmod_regularCases(void *args)
- {
- const dd_to_d regular_cases[] = {
- { 3.5, 2.0, 1.5 },
- { -6.25, 3.0, -0.25 },
- { 7.5, 2.5, 0.0 },
- { 2.0 / 3.0, -1.0 / 3.0, 0.0 }
- };
- return helper_ddtod("Fmod", SDL_fmod, regular_cases, SDL_arraysize(regular_cases));
- }
- /**
- * \brief Checks a range of values between 0 and UINT32_MAX
- */
- static int
- fmod_rangeTest(void *args)
- {
- Uint32 i;
- double test_value = 0.0;
- SDLTest_AssertPass("Fmod: Testing a range of %u values with steps of %u",
- RANGE_TEST_ITERATIONS,
- RANGE_TEST_STEP);
- for (i = 0; i < RANGE_TEST_ITERATIONS; i++, test_value += RANGE_TEST_STEP) {
- double result;
- /* These are tested elsewhere */
- if (isnan(test_value) || isinf(test_value)) {
- continue;
- }
- /* Only log failures to save performances */
- result = SDL_fmod(test_value, 1.0);
- if (0.0 != result) {
- SDLTest_AssertPass("Fmod(%.1f,%.1f), expected %.1f, got %.1f",
- test_value, 1.0,
- 0.0, result);
- return TEST_ABORTED;
- }
- }
- return TEST_COMPLETED;
- }
- /* SDL_exp tests functions */
- /**
- * \brief Checks positive and negative infinity.
- */
- static int
- exp_infCases(void *args)
- {
- double result;
- result = SDL_exp(INFINITY);
- SDLTest_AssertCheck(INFINITY == result,
- "Exp(%f), expected %f, got %f",
- INFINITY, INFINITY, result);
- result = SDL_exp(-INFINITY);
- SDLTest_AssertCheck(0.0 == result,
- "Exp(%f), expected %f, got %f",
- -INFINITY, 0.0, result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks positive and negative zero.
- */
- static int
- exp_zeroCases(void *args)
- {
- const d_to_d zero_cases[] = {
- { 0.0, 1.0 },
- { -0.0, 1.0 }
- };
- return helper_dtod("Exp", SDL_exp, zero_cases, SDL_arraysize(zero_cases));
- }
- /**
- * \brief Checks for overflow.
- *
- * This test is skipped for double types larger than 64 bits.
- */
- static int
- exp_overflowCase(void *args)
- {
- double result;
- if (sizeof(double) > 8) {
- return TEST_SKIPPED;
- }
- result = SDL_exp(710.0);
- SDLTest_AssertCheck(isinf(result),
- "Exp(%f), expected %f, got %f",
- 710.0, INFINITY, result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks the base case of 1.0.
- */
- static int
- exp_baseCase(void *args)
- {
- const double result = SDL_exp(1.0);
- SDLTest_AssertCheck(EULER == result,
- "Exp(%f), expected %f, got %f",
- 1.0, EULER, result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks a set of regular cases.
- */
- static int
- exp_regularCases(void *args)
- {
- /* Hexadecimal floating constants are not supported on C89 compilers */
- const d_to_d regular_cases[] = {
- { -101.0, 1.36853947117385291381565719268793547578002532127613087E-44 },
- { -15.73, 0.00000014741707833928422931856502906683425990763681 },
- { -1.0, 0.36787944117144233402427744294982403516769409179688 },
- { -0.5, 0.60653065971263342426311737654032185673713684082031 },
- { 0.5, 1.64872127070012819416433558217249810695648193359375 },
- { 2.25, 9.48773583635852624240669683786109089851379394531250 },
- { 34.125, 661148770968660.375 },
- { 112.89, 10653788283588960962604279261058893737879589093376.0 },
- { 539.483, 1970107755334319939701129934673541628417235942656909222826926175622435588279443011110464355295725187195188154768877850257012251677751742837992843520967922303961718983154427294786640886286983037548604937796221048661733679844353544028160.0 },
- };
- return helper_dtod("Exp", SDL_exp, regular_cases, SDL_arraysize(regular_cases));
- }
- /* SDL_log tests functions */
- /**
- * \brief Checks limits (zeros and positive infinity).
- */
- static int
- log_limitCases(void *args)
- {
- double result;
- result = SDL_log(INFINITY);
- SDLTest_AssertCheck(INFINITY == result,
- "Log(%f), expected %f, got %f",
- INFINITY, INFINITY, result);
- result = SDL_log(0.0);
- SDLTest_AssertCheck(-INFINITY == result,
- "Log(%f), expected %f, got %f",
- 0.0, -INFINITY, result);
- result = SDL_log(-0.0);
- SDLTest_AssertCheck(-INFINITY == result,
- "Log(%f), expected %f, got %f",
- -0.0, -INFINITY, result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks some base cases.
- */
- static int
- log_baseCases(void *args)
- {
- double result;
- result = SDL_log(1.0);
- SDLTest_AssertCheck(0.0 == result,
- "Log(%f), expected %f, got %f",
- 1.0, 0.0, result);
- result = SDL_log(EULER);
- SDLTest_AssertCheck(1.0 == result,
- "Log(%f), expected %f, got %f",
- EULER, 1.0, result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks the nan cases.
- */
- static int
- log_nanCases(void *args)
- {
- double result;
- result = SDL_log(NAN);
- SDLTest_AssertCheck(isnan(result),
- "Log(%f), expected %f, got %f",
- NAN, NAN, result);
- result = SDL_log(-1234.5678);
- SDLTest_AssertCheck(isnan(result),
- "Log(%f), expected %f, got %f",
- -1234.5678, NAN, result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks a set of regular cases.
- */
- static int
- log_regularCases(void *args)
- {
- const d_to_d regular_cases[] = {
- { 5.0, 1.60943791243410028179994242236716672778129577636718750 },
- { 10.0, 2.302585092994045901093613792909309267997741699218750 },
- { 56.32, 4.031049711849786554296315443934872746467590332031250 },
- { 789.123, 6.670922202231861497523368598194792866706848144531250 },
- { 2734.876324, 7.91384149408957959792587644187733530998229980468750 }
- };
- return helper_dtod("Log", SDL_log, regular_cases, SDL_arraysize(regular_cases));
- }
- /* SDL_log10 tests functions */
- /**
- * \brief Checks limits (zeros and positive infinity).
- */
- static int
- log10_limitCases(void *args)
- {
- double result;
- result = SDL_log10(INFINITY);
- SDLTest_AssertCheck(INFINITY == result,
- "Log10(%f), expected %f, got %f",
- INFINITY, INFINITY, result);
- result = SDL_log10(0.0);
- SDLTest_AssertCheck(-INFINITY == result,
- "Log10(%f), expected %f, got %f",
- 0.0, -INFINITY, result);
- result = SDL_log10(-0.0);
- SDLTest_AssertCheck(-INFINITY == result,
- "Log10(%f), expected %f, got %f",
- -0.0, -INFINITY, result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks some base cases.
- */
- static int
- log10_baseCases(void *args)
- {
- const d_to_d base_cases[] = {
- { 1.0, 0.0 },
- { 10.0, 1.0 },
- { 100.0, 2.0 },
- { 1000.0, 3.0 },
- { 10000.0, 4.0 },
- { 100000.0, 5.0 },
- { 1000000.0, 6.0 },
- { 10000000.0, 7.0 },
- { 100000000.0, 8.0 },
- { 1000000000.0, 9.0 },
- };
- return helper_dtod("Log10", SDL_log10, base_cases, SDL_arraysize(base_cases));
- }
- /**
- * \brief Checks the nan cases.
- */
- static int
- log10_nanCases(void *args)
- {
- double result;
- result = SDL_log10(NAN);
- SDLTest_AssertCheck(isnan(result),
- "Log10(%f), expected %f, got %f",
- NAN, NAN, result);
- result = SDL_log10(-1234.5678);
- SDLTest_AssertCheck(isnan(result),
- "Log10(%f), expected %f, got %f",
- -1234.5678, NAN, result);
- return TEST_COMPLETED;
- }
- /**
- * \brief Checks a set of regular cases.
- */
- static int
- log10_regularCases(void *args)
- {
- const d_to_d regular_cases[] = {
- { 5.0, 0.698970004336018857493684208748163655400276184082031250 },
- { 12.5, 1.09691001300805646145875016372883692383766174316406250 },
- { 56.32, 1.750662646134055755453573510749265551567077636718750 },
- { 789.123, 2.8971447016351858927407647570362314581871032714843750 },
- { 2734.876324, 3.436937691540090433761633903486654162406921386718750 }
- };
- return helper_dtod("Log10", SDL_log10, regular_cases, SDL_arraysize(regular_cases));
- }
- /* ================= Test References ================== */
- /* SDL_floor test cases */
- static const SDLTest_TestCaseReference floorTestInf = {
- (SDLTest_TestCaseFp) floor_infCases, "floor_infCases",
- "Check positive and negative infinity", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference floorTestZero = {
- (SDLTest_TestCaseFp) floor_zeroCases, "floor_zeroCases",
- "Check positive and negative zero", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference floorTestNan = {
- (SDLTest_TestCaseFp) floor_nanCase, "floor_nanCase",
- "Check the NaN special case", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference floorTestRound = {
- (SDLTest_TestCaseFp) floor_roundNumbersCases, "floor_roundNumberCases",
- "Check a set of round numbers", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference floorTestFraction = {
- (SDLTest_TestCaseFp) floor_fractionCases, "floor_fractionCases",
- "Check a set of fractions", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference floorTestRange = {
- (SDLTest_TestCaseFp) floor_rangeTest, "floor_rangeTest",
- "Check a range of positive integer", TEST_ENABLED
- };
- /* SDL_ceil test cases */
- static const SDLTest_TestCaseReference ceilTestInf = {
- (SDLTest_TestCaseFp) ceil_infCases, "ceil_infCases",
- "Check positive and negative infinity", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference ceilTestZero = {
- (SDLTest_TestCaseFp) ceil_zeroCases, "ceil_zeroCases",
- "Check positive and negative zero", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference ceilTestNan = {
- (SDLTest_TestCaseFp) ceil_nanCase, "ceil_nanCase",
- "Check the NaN special case", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference ceilTestRound = {
- (SDLTest_TestCaseFp) ceil_roundNumbersCases, "ceil_roundNumberCases",
- "Check a set of round numbers", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference ceilTestFraction = {
- (SDLTest_TestCaseFp) ceil_fractionCases, "ceil_fractionCases",
- "Check a set of fractions", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference ceilTestRange = {
- (SDLTest_TestCaseFp) ceil_rangeTest, "ceil_rangeTest",
- "Check a range of positive integer", TEST_ENABLED
- };
- /* SDL_trunc test cases */
- static const SDLTest_TestCaseReference truncTestInf = {
- (SDLTest_TestCaseFp) trunc_infCases, "trunc_infCases",
- "Check positive and negative infinity", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference truncTestZero = {
- (SDLTest_TestCaseFp) trunc_zeroCases, "trunc_zeroCases",
- "Check positive and negative zero", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference truncTestNan = {
- (SDLTest_TestCaseFp) trunc_nanCase, "trunc_nanCase",
- "Check the NaN special case", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference truncTestRound = {
- (SDLTest_TestCaseFp) trunc_roundNumbersCases, "trunc_roundNumberCases",
- "Check a set of round numbers", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference truncTestFraction = {
- (SDLTest_TestCaseFp) trunc_fractionCases, "trunc_fractionCases",
- "Check a set of fractions", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference truncTestRange = {
- (SDLTest_TestCaseFp) trunc_rangeTest, "trunc_rangeTest",
- "Check a range of positive integer", TEST_ENABLED
- };
- /* SDL_round test cases */
- static const SDLTest_TestCaseReference roundTestInf = {
- (SDLTest_TestCaseFp) round_infCases, "round_infCases",
- "Check positive and negative infinity", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference roundTestZero = {
- (SDLTest_TestCaseFp) round_zeroCases, "round_zeroCases",
- "Check positive and negative zero", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference roundTestNan = {
- (SDLTest_TestCaseFp) round_nanCase, "round_nanCase",
- "Check the NaN special case", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference roundTestRound = {
- (SDLTest_TestCaseFp) round_roundNumbersCases, "round_roundNumberCases",
- "Check a set of round numbers", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference roundTestFraction = {
- (SDLTest_TestCaseFp) round_fractionCases, "round_fractionCases",
- "Check a set of fractions", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference roundTestRange = {
- (SDLTest_TestCaseFp) round_rangeTest, "round_rangeTest",
- "Check a range of positive integer", TEST_ENABLED
- };
- /* SDL_fabs test cases */
- static const SDLTest_TestCaseReference fabsTestInf = {
- (SDLTest_TestCaseFp) fabs_infCases, "fabs_infCases",
- "Check positive and negative infinity", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference fabsTestZero = {
- (SDLTest_TestCaseFp) fabs_zeroCases, "fabs_zeroCases",
- "Check positive and negative zero", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference fabsTestNan = {
- (SDLTest_TestCaseFp) fabs_nanCase, "fabs_nanCase",
- "Check the NaN special case", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference fabsTestRange = {
- (SDLTest_TestCaseFp) fabs_rangeTest, "fabs_rangeTest",
- "Check a range of positive integer", TEST_ENABLED
- };
- /* SDL_copysign test cases */
- static const SDLTest_TestCaseReference copysignTestInf = {
- (SDLTest_TestCaseFp) copysign_infCases, "copysign_infCases",
- "Check positive and negative infinity", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference copysignTestZero = {
- (SDLTest_TestCaseFp) copysign_zeroCases, "copysign_zeroCases",
- "Check positive and negative zero", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference copysignTestNan = {
- (SDLTest_TestCaseFp) copysign_nanCases, "copysign_nanCases",
- "Check the NaN special cases", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference copysignTestRange = {
- (SDLTest_TestCaseFp) copysign_rangeTest, "copysign_rangeTest",
- "Check a range of positive integer", TEST_ENABLED
- };
- /* SDL_fmod test cases */
- static const SDLTest_TestCaseReference fmodTestDivOfInf = {
- (SDLTest_TestCaseFp) fmod_divOfInfCases, "fmod_divOfInfCases",
- "Check division of positive and negative infinity", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference fmodTestDivByInf = {
- (SDLTest_TestCaseFp) fmod_divByInfCases, "fmod_divByInfCases",
- "Check division by positive and negative infinity", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference fmodTestDivOfZero = {
- (SDLTest_TestCaseFp) fmod_divOfZeroCases, "fmod_divOfZeroCases",
- "Check division of positive and negative zero", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference fmodTestDivByZero = {
- (SDLTest_TestCaseFp) fmod_divByZeroCases, "fmod_divByZeroCases",
- "Check division by positive and negative zero", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference fmodTestNan = {
- (SDLTest_TestCaseFp) fmod_nanCases, "fmod_nanCases",
- "Check the NaN special cases", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference fmodTestRegular = {
- (SDLTest_TestCaseFp) fmod_regularCases, "fmod_regularCases",
- "Check a set of regular values", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference fmodTestRange = {
- (SDLTest_TestCaseFp) fmod_rangeTest, "fmod_rangeTest",
- "Check a range of positive integer", TEST_ENABLED
- };
- /* SDL_exp test cases */
- static const SDLTest_TestCaseReference expTestInf = {
- (SDLTest_TestCaseFp) exp_infCases, "exp_infCases",
- "Check positive and negative infinity", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference expTestZero = {
- (SDLTest_TestCaseFp) exp_zeroCases, "exp_zeroCases",
- "Check for positive and negative zero", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference expTestOverflow = {
- (SDLTest_TestCaseFp) exp_overflowCase, "exp_overflowCase",
- "Check for overflow", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference expTestBase = {
- (SDLTest_TestCaseFp) exp_baseCase, "exp_baseCase",
- "Check the base case of 1.0", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference expTestRegular = {
- (SDLTest_TestCaseFp) exp_regularCases, "exp_regularCases",
- "Check a set of regular values", TEST_ENABLED
- };
- /* SDL_log test cases */
- static const SDLTest_TestCaseReference logTestLimit = {
- (SDLTest_TestCaseFp) log_limitCases, "log_limitCases",
- "Check for limits", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference logTestNan = {
- (SDLTest_TestCaseFp) log_nanCases, "log_nanCases",
- "Check for the nan cases", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference logTestBase = {
- (SDLTest_TestCaseFp) log_baseCases, "log_baseCases",
- "Check for base cases", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference logTestRegular = {
- (SDLTest_TestCaseFp) log_regularCases, "log_regularCases",
- "Check a set of regular values", TEST_ENABLED
- };
- /* SDL_log10 test cases */
- static const SDLTest_TestCaseReference log10TestLimit = {
- (SDLTest_TestCaseFp) log10_limitCases, "log10_limitCases",
- "Check for limits", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference log10TestNan = {
- (SDLTest_TestCaseFp) log10_nanCases, "log10_nanCases",
- "Check for the nan cases", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference log10TestBase = {
- (SDLTest_TestCaseFp) log10_baseCases, "log10_baseCases",
- "Check for base cases", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference log10TestRegular = {
- (SDLTest_TestCaseFp) log10_regularCases, "log10_regularCases",
- "Check a set of regular values", TEST_ENABLED
- };
- static const SDLTest_TestCaseReference *mathTests[] = {
- &floorTestInf, &floorTestZero, &floorTestNan,
- &floorTestRound, &floorTestFraction, &floorTestRange,
- &ceilTestInf, &ceilTestZero, &ceilTestNan,
- &ceilTestRound, &ceilTestFraction, &ceilTestRange,
- &truncTestInf, &truncTestZero, &truncTestNan,
- &truncTestRound, &truncTestFraction, &truncTestRange,
- &roundTestInf, &roundTestZero, &roundTestNan,
- &roundTestRound, &roundTestFraction, &roundTestRange,
- &fabsTestInf, &fabsTestZero, &fabsTestNan, &fabsTestRange,
- ©signTestInf, ©signTestZero, ©signTestNan, ©signTestRange,
- &fmodTestDivOfInf, &fmodTestDivByInf, &fmodTestDivOfZero, &fmodTestDivByZero,
- &fmodTestNan, &fmodTestRegular, &fmodTestRange,
- &expTestInf, &expTestZero, &expTestOverflow,
- &expTestBase, &expTestRegular,
- &logTestLimit, &logTestNan,
- &logTestBase, &logTestRegular,
- &log10TestLimit, &log10TestNan,
- &log10TestBase, &log10TestRegular,
- NULL
- };
- SDLTest_TestSuiteReference mathTestSuite = { "Math", NULL, mathTests, NULL };
|