From d5e4482fc2cc970cab364436b5af1068da13142d Mon Sep 17 00:00:00 2001 From: Ronen Friedman Date: Wed, 3 Jun 2026 14:17:46 +0000 Subject: [PATCH] crimson/tests: emit success message in unittest-seastar-alienstore-thread-pool ... avoiding the need to guess the results. Signed-off-by: Ronen Friedman --- src/test/crimson/test_alienstore_thread_pool.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/crimson/test_alienstore_thread_pool.cc b/src/test/crimson/test_alienstore_thread_pool.cc index 72c3a4e20cd..655afbda415 100644 --- a/src/test/crimson/test_alienstore_thread_pool.cc +++ b/src/test/crimson/test_alienstore_thread_pool.cc @@ -61,6 +61,8 @@ int main(int argc, char** argv) return tp->stop(); }); }); + }).then([] { + std::cout << "All tests succeeded" << std::endl; }).finally([] { return crimson::common::sharded_conf().stop(); }).handle_exception([](auto e) { -- 2.47.3