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
This commit is contained in:
Michał Chojnowski
2025-05-16 16:00:54 +02:00
committed by Patryk Jędrzejczak
parent d303edbc39
commit ff8a119f26

View File

@@ -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()