{
server= build_gearmand("localhost", try_port);
}
- else
- {
- Error << "Libgearman was not found";
- }
- }
- else
- {
- Error << "No gearmand binary is available";
}
}
else if (server_type.compare("blobslap_worker") == 0)
{
- if (GEARMAND_BINARY and GEARMAND_BLOBSLAP_WORKER)
+ if (GEARMAND_BINARY)
{
- if (HAVE_LIBGEARMAN)
+ if (GEARMAND_BLOBSLAP_WORKER)
{
- server= build_blobslap_worker(try_port);
+ if (HAVE_LIBGEARMAN)
+ {
+ server= build_blobslap_worker(try_port);
+ }
}
- else
- {
- Error << "Libgearman was not found";
- }
- }
- else
- {
- Error << "No gearmand binary is available";
}
}
else if (server_type.compare("memcached-sasl") == 0)
{
server= build_memcached_sasl("localhost", try_port, construct.username(), construct.password());
}
- else
- {
- Error << "Libmemcached was not found";
- }
- }
- else
- {
- Error << "No memcached binary that was compiled with sasl is available";
}
}
else if (server_type.compare("memcached") == 0)
{
server= build_memcached("localhost", try_port);
}
- else
- {
- Error << "Libmemcached was not found";
- }
}
- else
- {
- Error << "No memcached binary is available";
- }
- }
- else
- {
- Error << "Failed to start " << server_type << ", no support was found to be compiled in for it.";
}
if (server == NULL)
/*
We will now cycle the server we have created.
*/
- if (not server->cycle())
+ if (server->cycle() == false)
{
Error << "Could not start up server " << *server;
delete server;
Out << "run " << server->args(options);
getchar();
}
- else if (not server->start())
+ else if (server->start() == false)
{
Error << "Failed to start " << *server;
delete server;
server_startup_st *servers= (server_startup_st*)object;
test_true(servers);
- if (HAVE_LIBGEARMAN and GEARMAND_BINARY)
+ if (GEARMAND_BINARY)
{
- test_true(has_gearmand_binary());
- const char *argv[1]= { "cycle_gearmand" };
- test_true(server_startup(*servers, "gearmand", 9999, 1, argv));
-
- return TEST_SUCCESS;
+ if (HAVE_LIBGEARMAN)
+ {
+ test_true(has_gearmand_binary());
+ const char *argv[1]= { "cycle_gearmand" };
+ test_true(server_startup(*servers, "gearmand", 9999, 1, argv));
+
+ return TEST_SUCCESS;
+ }
}
return TEST_SKIPPED;
server_startup_st *servers= (server_startup_st*)object;
test_true(servers);
- if (MEMCACHED_BINARY and HAVE_LIBMEMCACHED)
+ if (MEMCACHED_BINARY)
{
- test_true(has_memcached_binary());
- const char *argv[1]= { "cycle_memcached" };
- test_true(servers->start_socket_server("memcached", 9997, 1, argv));
-
- return TEST_SUCCESS;
+ if (HAVE_LIBMEMCACHED)
+ {
+ test_true(has_memcached_binary());
+ const char *argv[1]= { "cycle_memcached" };
+ test_true(servers->start_socket_server("memcached", 9997, 1, argv));
+
+ return TEST_SUCCESS;
+ }
}
return TEST_SKIPPED;
return TEST_SKIPPED;
}
- if (MEMCACHED_SASL_BINARY and HAVE_LIBMEMCACHED)
+ if (MEMCACHED_SASL_BINARY)
{
- test_true(has_memcached_sasl_binary());
- const char *argv[1]= { "cycle_memcached_sasl" };
- test_true(server_startup(*servers, "memcached-sasl", 9996, 1, argv));
-
- return TEST_SUCCESS;
+ if (HAVE_LIBMEMCACHED)
+ {
+ test_true(has_memcached_sasl_binary());
+ const char *argv[1]= { "cycle_memcached_sasl" };
+ test_true(server_startup(*servers, "memcached-sasl", 9996, 1, argv));
+
+ return TEST_SUCCESS;
+ }
}
return TEST_SKIPPED;