Update all config.h usage.
[m6w6/libmemcached] / libtest / comparison.cc
index b670326c65b35837a82c8a01b6491bf201a1af91..c16399db7a31f3e9a5d0a1d5363cb3a1180fe49f 100644 (file)
  *
  */
 
-#include <config.h>
+#include "mem_config.h"
 #include <libtest/common.h>
 
 namespace libtest {
 
+bool jenkins_is_caller(void)
+{
+  if (bool(getenv("JENKINS_HOME")))
+  {
+    return true;
+  }
+
+  return false;
+}
+
 bool valgrind_is_caller(void)
 {
   if (bool(getenv("TESTS_ENVIRONMENT")) and strstr(getenv("TESTS_ENVIRONMENT"), "valgrind"))