From: Ronen Friedman Date: Wed, 3 Jun 2026 14:17:46 +0000 (+0000) Subject: crimson/tests: emit success message in unittest-seastar-alienstore-thread-pool X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d5e4482fc2cc970cab364436b5af1068da13142d;p=ceph.git crimson/tests: emit success message in unittest-seastar-alienstore-thread-pool ... avoiding the need to guess the results. Signed-off-by: Ronen Friedman --- 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) {