From 8693d062973e76546e50267695cfcd325c879575 Mon Sep 17 00:00:00 2001 From: Christophe Date: Thu, 26 Nov 2020 11:14:54 +0100 Subject: [PATCH] Fix glm::acsch tests --- test/ext/ext_scalar_reciprocal.cpp | 4 ++-- test/ext/ext_vector_reciprocal.cpp | 7 +++++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/test/ext/ext_scalar_reciprocal.cpp b/test/ext/ext_scalar_reciprocal.cpp index a8042dd7..ebba10d7 100644 --- a/test/ext/ext_scalar_reciprocal.cpp +++ b/test/ext/ext_scalar_reciprocal.cpp @@ -118,8 +118,8 @@ static int test_acsch() { int Error = 0; - Error += glm::acsch(0.0001) > 10000.0 ? 0 : 1; - Error += glm::acsch(-0.0001) < -10000.0 ? 0 : 1; + Error += glm::acsch(0.01) > 1.0 ? 0 : 1; + Error += glm::acsch(-0.01) < -1.0 ? 0 : 1; Error += glm::equal(glm::acsch(100.0), 0.0, 0.01) ? 0 : 1; Error += glm::equal(glm::acsch(-100.0), 0.0, 0.01) ? 0 : 1; diff --git a/test/ext/ext_vector_reciprocal.cpp b/test/ext/ext_vector_reciprocal.cpp index 2c71ddaa..f4b9f18b 100644 --- a/test/ext/ext_vector_reciprocal.cpp +++ b/test/ext/ext_vector_reciprocal.cpp @@ -130,8 +130,11 @@ static int test_acsch() { int Error = 0; - Error += glm::acsch(glm::dvec1(0.0001)).x > 10000.0 ? 0 : 1; - Error += glm::acsch(glm::dvec1(-0.0001)).x < -10000.0 ? 0 : 1; + glm::dvec1 const a(glm::acsch(glm::dvec1(0.01))); + Error += a.x > 1.0 ? 0 : 1; + + glm::dvec1 const b(glm::acsch(glm::dvec1(-0.01))); + Error += b.x < -1.0 ? 0 : 1; Error += glm::all(glm::equal(glm::acsch(glm::dvec1(100.0)), glm::dvec1(0.0), 0.01)) ? 0 : 1; Error += glm::all(glm::equal(glm::acsch(glm::dvec1(-100.0)), glm::dvec1(0.0), 0.01)) ? 0 : 1;