SDL: Test: Use inexact helper for log10 regular cases.

From cee47a9ebe28819a16310866e9de246dca3b8644 Mon Sep 17 00:00:00 2001
From: Pierre Wendling <[EMAIL REDACTED]>
Date: Wed, 15 Jun 2022 14:36:13 -0400
Subject: [PATCH] Test: Use inexact helper for log10 regular cases.

On ARMv6, the result is not precise enough for this function.
---
 test/testautomation_math.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/testautomation_math.c b/test/testautomation_math.c
index 20628e528b0..ad8d70f5bea 100644
--- a/test/testautomation_math.c
+++ b/test/testautomation_math.c
@@ -1268,7 +1268,7 @@ log10_regularCases(void *args)
         { 789.123, 2.8971447016351858927407647570362314581871032714843750 },
         { 2734.876324, 3.436937691540090433761633903486654162406921386718750 }
     };
-    return helper_dtod("Log10", SDL_log10, regular_cases, SDL_arraysize(regular_cases));
+    return helper_dtod_inexact("Log10", SDL_log10, regular_cases, SDL_arraysize(regular_cases));
 }
 
 /* SDL_pow tests functions */