From: Brian Aker Date: Thu, 14 Jan 2010 19:17:39 +0000 (-0800) Subject: Remove dead udp test. X-Git-Tag: 0.40~107 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=8e0842da789204305bdfd5f06c87c5842c5b9451;p=awesomized%2Flibmemcached Remove dead udp test. --- diff --git a/tests/include.am b/tests/include.am index 835096aa..ab48b42f 100644 --- a/tests/include.am +++ b/tests/include.am @@ -37,8 +37,7 @@ noinst_PROGRAMS+= \ tests/startservers \ tests/testapp \ tests/testhashkit \ - tests/testplus \ - tests/udptest + tests/testplus noinst_LTLIBRARIES+= tests/libserver.la tests_libserver_la_SOURCES= tests/server.c @@ -60,10 +59,6 @@ tests_testplus_SOURCES= tests/plus.cpp tests_testplus_LDADD= tests/libtest.la tests/libserver.la $(TESTS_LDADDS) tests_testplus_DEPENDENCIES= $(tests_testplus_LDADD) -tests_udptest_SOURCES= tests/udp.c -tests_udptest_LDADD= tests/libtest.la tests/libserver.la $(TESTS_LDADDS) -tests_udptest_DEPENDENCIES= $(tests_udptest_LDADD) - tests_atomsmasher_SOURCES= tests/atomsmasher.c tests_atomsmasher_LDADD= \ clients/libgenexec.la \ diff --git a/tests/udp.c b/tests/udp.c deleted file mode 100644 index 232d6b64..00000000 --- a/tests/udp.c +++ /dev/null @@ -1,73 +0,0 @@ -/* LibMemcached - * Copyright (C) 2006-2009 Brian Aker - * All rights reserved. - * - * Use and distribution licensed under the BSD license. See - * the COPYING file in the parent directory for full text. - * - * Summary: - * - */ - -/* - Sample test application. -*/ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "test.h" -#include "server.h" - -/* Prototypes */ -test_return_t set_test(memcached_st *memc); - -test_return_t set_test(memcached_st *memc) -{ - memcached_return_t rc; - const char *key= "foo"; - const char *value= "when we sanitize"; - - rc= memcached_set(memc, key, strlen(key), - value, strlen(value), - (time_t)0, (uint32_t)0); - test_truth(rc == MEMCACHED_SUCCESS || rc == MEMCACHED_BUFFERED); - - return TEST_SUCCESS; -} - -test_st tests[] ={ - {"set", 1, (test_callback_fn)set_test }, - {0, 0, 0} -}; - -collection_st collection[] ={ - {"udp", 0, 0, tests}, - {0, 0, 0, 0} -}; - -#define SERVERS_TO_CREATE 1 - -#include "libmemcached_world.h" - -void get_world(world_st *world) -{ - world->collections= collection; - - world->create= (test_callback_create_fn)world_create; - world->destroy= (test_callback_fn)world_destroy; - - world->test.startup= (test_callback_fn)world_test_startup; - world->test.flush= (test_callback_fn)world_flush; - world->test.pre_run= (test_callback_fn)world_pre_run; - world->test.post_run= (test_callback_fn)world_post_run; - world->test.on_error= (test_callback_error_fn)world_on_error; - - world->runner= &defualt_libmemcached_runner; -}