X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libtest%2Fcomparison.cc;h=4a1d99a301a5b2cfc63010b277e0e03cb0126935;hb=6b83fd5838692b71a50710b9bc13680f9c586167;hp=b670326c65b35837a82c8a01b6491bf201a1af91;hpb=a1f2b0b98e03369ed051b232f1fc33ed1d611b16;p=m6w6%2Flibmemcached diff --git a/libtest/comparison.cc b/libtest/comparison.cc index b670326c..4a1d99a3 100644 --- a/libtest/comparison.cc +++ b/libtest/comparison.cc @@ -34,11 +34,21 @@ * */ -#include +#include "mem_config.h" #include 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")) @@ -56,6 +66,11 @@ bool gdb_is_caller(void) return true; } + if (bool(getenv("LIBTEST_IN_GDB"))) + { + return true; + } + return false; }