From 385795ed7bbe22e9f0c4ddbc314fe16b88e6ae4e Mon Sep 17 00:00:00 2001
From: Jean-Marc Valin <Jean-Marc.Valin@csiro.au>
Date: Wed, 26 Mar 2008 15:56:07 +1100
Subject: [PATCH] Fixed the rcp() testcase for new assumptions (x is positive)

---
 tests/mathops-test.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/tests/mathops-test.c b/tests/mathops-test.c
index 0a5412659..dc208da4b 100644
--- a/tests/mathops-test.c
+++ b/tests/mathops-test.c
@@ -17,12 +17,10 @@ int ret = 0;
 void testdiv(void)
 {
    celt_int32_t i;
-   for (i=-327670;i<=327670;i++)
+   for (i=1;i<=327670;i++)
    {
       double prod;
       celt_word32_t val;
-      if (i==0)
-         continue;
       val = celt_rcp(i);
 #ifdef FIXED_POINT
       prod = (1./32768./65526.)*val*i;
@@ -59,5 +57,5 @@ int main(void)
 {
    testdiv();
    testsqrt();
-   return 0;
+   return ret;
 }
-- 
GitLab