X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libtest%2Fserver_container.cc;h=4fdfd4140894a39855f160178a570e0f7be343a5;hb=941deb278c78654f9cfeda6f343c79e2f10b746a;hp=8203de9d5b46854268d7fd5f8695fa8db8db24bc;hpb=015b6142ad6c3b496437d397416aacb776a42aed;p=m6w6%2Flibmemcached diff --git a/libtest/server_container.cc b/libtest/server_container.cc index 8203de9d..4fdfd414 100644 --- a/libtest/server_container.cc +++ b/libtest/server_container.cc @@ -179,6 +179,16 @@ bool server_startup(server_startup_st& construct, const std::string& server_type } } } + else if (server_type.compare("drizzled") == 0) + { + if (DRIZZLED_BINARY) + { + if (HAVE_LIBDRIZZLE) + { + server= build_drizzled("localhost", try_port); + } + } + } else if (server_type.compare("blobslap_worker") == 0) { if (GEARMAND_BINARY) @@ -240,7 +250,7 @@ bool server_startup(server_startup_st& construct, const std::string& server_type server->build(argc, argv); - if (gdb_is_caller() and false) + if (false) { Out << "Pausing for startup, hit return when ready."; std::string gdb_command= server->base_command(); @@ -341,7 +351,7 @@ bool server_startup_st::start_socket_server(const std::string& server_type, cons server->build(argc, argv); - if (gdb_is_caller() and false) + if (false) { Out << "Pausing for startup, hit return when ready."; std::string gdb_command= server->base_command();