mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-05-08 17:22:18 +00:00
Test: Remove early return in pow test.
This commit is contained in:
parent
6be430c7f7
commit
3b9f47b85f
|
@ -1326,7 +1326,6 @@ pow_baseNanExp0Cases(void *args)
|
||||||
SDLTest_AssertCheck(1.0 == result,
|
SDLTest_AssertCheck(1.0 == result,
|
||||||
"Pow(%f,%f), expected %f, got %f",
|
"Pow(%f,%f), expected %f, got %f",
|
||||||
NAN, 0.0, 1.0, result);
|
NAN, 0.0, 1.0, result);
|
||||||
return TEST_COMPLETED;
|
|
||||||
|
|
||||||
result = SDL_pow(NAN, -0.0);
|
result = SDL_pow(NAN, -0.0);
|
||||||
SDLTest_AssertCheck(1.0 == result,
|
SDLTest_AssertCheck(1.0 == result,
|
||||||
|
|
Loading…
Reference in a new issue