From b5dd60c210dab5558ae623128bc784cbf6d18634 Mon Sep 17 00:00:00 2001 From: Daniel Thornburgh Date: Fri, 22 Mar 2024 19:06:34 -0400 Subject: [PATCH] Disable fixed point test at O0 --- SingleSource/UnitTests/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SingleSource/UnitTests/CMakeLists.txt b/SingleSource/UnitTests/CMakeLists.txt index c443f4af2..fe8f6ad8d 100644 --- a/SingleSource/UnitTests/CMakeLists.txt +++ b/SingleSource/UnitTests/CMakeLists.txt @@ -97,6 +97,10 @@ if(ARCH STREQUAL "MOS") printargs.c TestLoop.c ) + +if (CMAKE_BUILD_TYPE STREQUAL Debug) + list(REMOVE_ITEM Source fixed_point.cpp) +endif() endif() # Enable matrix types extension tests for compilers supporting -fenable-matrix.