Commit 3b9f47b85fbc356aae4a8c9bbe5c08db0afece46

Pierre Wendling 2022-05-20T21:45:31

Test: Remove early return in pow test.

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/test/testautomation_math.c b/test/testautomation_math.c
index 33cb281..729606d 100644
--- a/test/testautomation_math.c
+++ b/test/testautomation_math.c
@@ -1326,7 +1326,6 @@ pow_baseNanExp0Cases(void *args)
     SDLTest_AssertCheck(1.0 == result,
                         "Pow(%f,%f), expected %f, got %f",
                         NAN, 0.0, 1.0, result);
-    return TEST_COMPLETED;
 
     result = SDL_pow(NAN, -0.0);
     SDLTest_AssertCheck(1.0 == result,