From 24640fdb03eb098f5c308ee26d8372a366525a8f Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Thu, 14 Sep 2023 01:07:24 +0200 Subject: add more constexpr math and tests --- test/const-math.cpp | 79 ----------------------------------------------------- 1 file changed, 79 deletions(-) delete mode 100644 test/const-math.cpp (limited to 'test/const-math.cpp') diff --git a/test/const-math.cpp b/test/const-math.cpp deleted file mode 100644 index 114af28f..00000000 --- a/test/const-math.cpp +++ /dev/null @@ -1,79 +0,0 @@ -#include "app.hpp" -#include "compat/assert.hpp" -#include -#include -#include -#include -#include - -#if defined CORRADE_CONSTEXPR14_ - -#ifdef __GNUG__ -# pragma GCC diagnostic push -# pragma GCC diagnostic ignored "-Wfloat-equal" -#endif - -namespace floormat { - -using Magnum::Math::Vector; - -namespace { - -template -constexpr void test_float2() -{ - const vec a{(T)1, (T)2}, b{(T)2, (T)3}; - - fm_assert(a[0] == (T)1 && a[1] == (T)2); - fm_assert(a + b == vec{(T)3, (T)5}); - fm_assert(a - b == vec{(T)-1, (T)-1}); - fm_assert(a * b == vec{(T)2, (T)6}); - fm_assert(b / a == vec{(T)2, (T)1.5}); - fm_assert(b.product() == (T)6); - fm_assert(b.sum() == (T)5); -} - -template -constexpr void test_int() -{ - using I = typename ivec::Type; - constexpr auto vec = [](auto x, auto y) { return ivec{(I)x, (I)y}; }; - const auto a = vec(3, 5), b = vec(11, 7); - - fm_assert(a[0] == 3 && a[1] == 5); - fm_assert(a + b == vec(14,12)); - fm_assert(b - a == vec(8, 2)); - fm_assert(b % a == vec(2, 2)); - fm_assert(b / a == vec(3, 1)); - fm_assert(a.product() == 15); - fm_assert(a.sum() == 8); -} - -constexpr bool compile_tests() -{ - test_float2, float>(); - test_float2, double>(); - test_float2(); - - test_int>(); - test_int>(); - test_int>(); - - return true; -} - -} // namespace - -void test_app::test_const_math() -{ - static_assert(compile_tests()); -} - -} // namespace floormat - -#ifdef __GNUG__ -# pragma GCC diagnostic pop -#endif -#else -void floormat::test_app::test_const_math() {} -#endif -- cgit v1.2.3