X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libtest%2Fserver.cc;h=6ff6fc3a3a24a50a3377f8640d9d332783de529c;hb=56bc4a66fa7a42de8ff9b7220f263ef756202845;hp=c1d01c749e4d3353d32a63301904385448cd3dd1;hpb=45c6b15d970aca4fa5619b2ba501c1b0f1d89006;p=m6w6%2Flibmemcached diff --git a/libtest/server.cc b/libtest/server.cc index c1d01c74..6ff6fc3a 100644 --- a/libtest/server.cc +++ b/libtest/server.cc @@ -25,12 +25,14 @@ #include #include +#include #include #include #include #include #include +#include // trim from end static inline std::string &rtrim(std::string &s) @@ -159,11 +161,16 @@ bool Server::start() } #endif - if (getenv("YATL_VALGRIND_SERVER")) + if (getenv("YATL_PTRCHECK_SERVER")) + { + _app.use_ptrcheck(); + } + else if (getenv("YATL_VALGRIND_SERVER")) { _app.use_valgrind(); } - else if (args(_app) == false) + + if (args(_app) == false) { Error << "Could not build command()"; return false; @@ -183,6 +190,7 @@ bool Server::start() } size_t repeat= 5; + _app.slurp(); while (--repeat) { if (pid_file().empty() == false) @@ -196,9 +204,13 @@ bool Server::start() continue; } + char buf[PATH_MAX]; + getcwd(buf, sizeof(buf)); throw libtest::fatal(LIBYATL_DEFAULT_PARAM, - "Unable to open pidfile for: %s", - _running.c_str()); + "Unable to open pidfile in %s for: %s stderr:%s", + buf, + _running.c_str(), + _app.stderr_c_str()); } } } @@ -231,20 +243,26 @@ bool Server::start() // If we happen to have a pid file, lets try to kill it if ((pid_file().empty() == false) and (access(pid_file().c_str(), R_OK) == 0)) { + _app.slurp(); if (kill_file(pid_file()) == false) { - throw libtest::fatal(LIBYATL_DEFAULT_PARAM, "Failed to kill off server after startup occurred, when pinging failed: %s", pid_file().c_str()); + throw libtest::fatal(LIBYATL_DEFAULT_PARAM, + "Failed to kill off server after startup occurred, when pinging failed: %s stderr:%s", + pid_file().c_str(), + _app.stderr_c_str()); } throw libtest::fatal(LIBYATL_DEFAULT_PARAM, - "Failed to ping(), waited: %u server started, having pid_file. exec: %s error:%s", - this_wait, _running.c_str(), _app.stderr_c_str()); + "Failed to ping(), waited: %u server started, having pid_file. exec: %s stderr:%s", + this_wait, _running.c_str(), + _app.stderr_c_str()); } else { throw libtest::fatal(LIBYATL_DEFAULT_PARAM, - "Failed to ping() server started. exec: %s", - _running.c_str()); + "Failed to ping() server started. exec: %s stderr:%s", + _running.c_str(), + _app.stderr_c_str()); } _running.clear(); return false; @@ -319,8 +337,7 @@ bool Server::set_pid_file() int fd; if ((fd= mkstemp(file_buffer)) == -1) { - perror(file_buffer); - return false; + throw libtest::fatal(LIBYATL_DEFAULT_PARAM, "mkstemp() failed on %s with %s", file_buffer, strerror(errno)); } close(fd); unlink(file_buffer);