X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libtest%2Funittest.cc;h=0d50447783ce0c1278d6c07e1b072336ea7e4223;hb=6b83fd5838692b71a50710b9bc13680f9c586167;hp=f8432476ab10d2f7ea557c1a67fd1abe4b6d2f12;hpb=15d1646b2048caffbfaf2b7562665d38afe92688;p=m6w6%2Flibmemcached diff --git a/libtest/unittest.cc b/libtest/unittest.cc index f8432476..0d504477 100644 --- a/libtest/unittest.cc +++ b/libtest/unittest.cc @@ -42,7 +42,7 @@ #include #endif -#if defined(LIBTEST_WITH_LIBGEARMAN_SUPPORT) && LIBTEST_WITH_LIBGEARMAN_SUPPORT +#if defined(HAVE_LIBGEARMAN) && HAVE_LIBGEARMAN #include #endif @@ -734,6 +734,7 @@ static test_return_t lookup_false_TEST(void *) static test_return_t create_tmpfile_TEST(void *) { + test_skip(0, access("/usr/bin/touch", X_OK )); std::string tmp= create_tmpfile(__func__); test_compare(-1, access(tmp.c_str(), R_OK)); test_compare(-1, access(tmp.c_str(), F_OK)); @@ -770,6 +771,16 @@ static test_return_t check_for_gearman(void *) { test_skip(true, HAVE_LIBGEARMAN); test_skip(true, has_gearmand()); +#if defined(HAVE_GEARMAND_BINARY) && HAVE_GEARMAND_BINARY + if (GEARMAND_BINARY) + { + test_zero(access(GEARMAND_BINARY, X_OK )); + } + else + { + return TEST_SKIPPED; + } +#endif testing_service= "gearmand";