From 13f70be87b802d9a84ac489450be8cb5cb0dae96 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Wed, 31 Jul 2024 14:58:13 +0200 Subject: [PATCH] Set nOS-V version required for tests to 2.3.1 Includes the required fixes for the kernel ring buffer tests. --- test/rt/nosv/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/rt/nosv/CMakeLists.txt b/test/rt/nosv/CMakeLists.txt index 6d54a26..575deca 100644 --- a/test/rt/nosv/CMakeLists.txt +++ b/test/rt/nosv/CMakeLists.txt @@ -12,9 +12,9 @@ if(NOT NOSV_FOUND) return() endif() -# Needed for breakdown -if("${NOSV_VERSION}" VERSION_LESS "2.3.0") - message(FATAL_ERROR "nOS-V version ${NOSV_VERSION} too old, required at least 2.3.0") +# Needed for breakdown and kernel fix +if("${NOSV_VERSION}" VERSION_LESS "2.3.1") + message(FATAL_ERROR "nOS-V version ${NOSV_VERSION} too old, required at least 2.3.1") endif() message(STATUS "Enabling nOS-V RT tests")