From df1f775c70885b988e0be4e81e7d269c2875f87a Mon Sep 17 00:00:00 2001 From: tmadlener Date: Tue, 11 Jun 2024 12:01:08 +0200 Subject: [PATCH] Make sure to only run SIO legacy tests when input data is available --- tests/sio_io/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/sio_io/CMakeLists.txt b/tests/sio_io/CMakeLists.txt index 7102c36c7..7f53917fe 100644 --- a/tests/sio_io/CMakeLists.txt +++ b/tests/sio_io/CMakeLists.txt @@ -33,5 +33,7 @@ target_link_libraries(read_frame_legacy_sio PRIVATE "${sio_libs}" TestDataModel) foreach(version IN LISTS sio_legacy_test_versions) ADD_PODIO_LEGACY_TEST(${version} read_frame_sio ${version}-example_frame.sio) - ADD_PODIO_LEGACY_TEST(${version} read_frame_legacy_sio ${version}-example.sio) + if (version MATCHES "^v00-16") + ADD_PODIO_LEGACY_TEST(${version} read_frame_legacy_sio ${version}-example.sio) + endif() endforeach()