From ff8a119f264e355fd0eac32e043d15921764c19f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Chojnowski?= Date: Fri, 16 May 2025 16:00:54 +0200 Subject: [PATCH] test/boost/sstable_compressor_factory_test: define a test suite name It seems that tests in test/boost/combined_tests have to define a test suite name, otherwise they aren't picked up by test.py. Fixes #24199 Closes scylladb/scylladb#24200 --- test/boost/sstable_compressor_factory_test.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/boost/sstable_compressor_factory_test.cc b/test/boost/sstable_compressor_factory_test.cc index 8a8a8139f5..09a16c5935 100644 --- a/test/boost/sstable_compressor_factory_test.cc +++ b/test/boost/sstable_compressor_factory_test.cc @@ -14,6 +14,8 @@ #include "test/lib/log.hh" #include "test/lib/random_utils.hh" +BOOST_AUTO_TEST_SUITE(sstable_compressor_factory_test) + // 1. Create a random message. // 2. Set this random message as the recommended dict. // 3. On all shards, create compressors. @@ -131,3 +133,5 @@ SEASTAR_THREAD_TEST_CASE(test_numa_awareness) { test_one_numa_topology(n_numa_nodes); } } + +BOOST_AUTO_TEST_SUITE_END()