From 2608d4a139fd2983af36231c8d60e416c489f47f Mon Sep 17 00:00:00 2001 From: Brian Aker Date: Sun, 21 Oct 2012 22:46:12 -0400 Subject: [PATCH] Cycle tests should not be run on CI --- tests/cycle.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/cycle.cc b/tests/cycle.cc index cfaccb7e..2ec42463 100644 --- a/tests/cycle.cc +++ b/tests/cycle.cc @@ -120,6 +120,12 @@ collection_st collection[] ={ static void *world_create(server_startup_st& servers, test_return_t& error) { + if (jenkins_is_caller()) + { + error= TEST_SKIPPED; + return NULL; + } + if (libtest::has_memcached() == false) { error= TEST_SKIPPED; -- 2.30.2