From c09e66bb25d519325fd7b45ed7b54c03f8fbac58 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 1 Oct 2022 06:28:07 +0200 Subject: [PATCH] Fix apple/ARM FPU test, allow for FLT_EPSILON for unaligned math --- libs/ardour/test/fpu_test.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/ardour/test/fpu_test.cc b/libs/ardour/test/fpu_test.cc index dd4b865e76..a356b5da3e 100644 --- a/libs/ardour/test/fpu_test.cc +++ b/libs/ardour/test/fpu_test.cc @@ -225,7 +225,11 @@ FPUTest::veclibTest () mix_buffers_no_gain = veclib_mix_buffers_no_gain; copy_vector = default_copy_vector; +#ifdef __aarch64__ + run (16, FLT_EPSILON); +#else run (16); +#endif } #else