1 LDADDS = $(top_builddir)/libmemcached/libmemcached.la
3 if BUILD_LIBMEMCACHEDUTIL
4 LDADDS+= $(top_builddir)/libmemcached/libmemcachedutil.la
21 noinst_HEADERS = test.h server.h ketama_test_cases.h ketama_test_cases_spy.h hash_results.h libmemcached_world.h
22 noinst_PROGRAMS = testapp testplus udptest atomsmasher startservers testhashkit
23 noinst_LTLIBRARIES= libserver.la libtest.la
25 libserver_la_SOURCES= server.c
26 libtest_la_SOURCES= test.c
28 testapp_CFLAGS= $(AM_CFLAGS) $(NO_CONVERSION) $(NO_STRICT_ALIASING)
29 testapp_SOURCES = function.c
30 testapp_LDADD = $(top_builddir)/clients/libgenexec.la libtest.la libserver.la $(LDADDS)
32 testplus_SOURCES = plus.cpp
33 testplus_LDADD = libtest.la libserver.la $(LDADDS)
35 udptest_SOURCES = udp.c
36 udptest_LDADD = libtest.la libserver.la $(LDADDS)
38 atomsmasher_SOURCES = atomsmasher.c
39 atomsmasher_LDADD = $(top_builddir)/clients/libgenexec.la libtest.la libserver.la $(LDADDS)
41 startservers_SOURCES = start.c
42 startservers_LDADD = libserver.la $(LDADDS)
44 testhashkit_SOURCES = hashkit_functions.c
45 testhashkit_LDADD = libtest.la $(top_builddir)/libhashkit/libhashkit.la
48 sh t/memcat.test > r/memcat.res
49 sh t/memcp.test > r/memcp.res
50 sh t/memrm.test > r/memrm.res
51 sh t/memslap.test > r/memslap.res
52 sh t/memstat.test > r/memstat.res
54 test: testapp testhashkit testplus library_test libmhashkit_test memcapable
55 echo "Tests completed"
64 @MEMC_BINARY@ -d -P /tmp/Xumemc.pid -p 12555
65 @$(top_builddir)/clients/memcapable -p 12555 || echo "Your memcached server does not support all commands"
66 @cat /tmp/Xumemc.pid | xargs kill || echo "Failed to kill memcached server"
70 @MEMC_BINARY@ -d -P /tmp/Xumemc.pid -p 12555
71 export MEMCACHED_SERVERS="localhost:12555"
72 sh t/memcat.test > r/memcat.cmp
73 diff r/memcat.res r/memcat.cmp
74 sh t/memcp.test > r/memcp.cmp
75 diff r/memcp.res r/memcp.cmp
76 sh t/memrm.test > r/memrm.cmp
77 diff r/memrm.res r/memrm.cmp
78 sh t/memslap.test > r/memslap.cmp
79 diff r/memslap.res r/memslap.cmp
80 sh t/memstat.test > r/memstat.cmp
81 diff r/memstat.res r/memstat.cmp
82 cat /tmp/Xumemc.pid | xargs kill
86 $(LIBTOOL) --mode=execute gdb testapp
89 $(LIBTOOL) --mode=execute gdb testhashkit
92 $(LIBTOOL) --mode=execute valgrind --leak-check=yes --show-reachable=yes testapp
95 rm -f cachegrind.out.*
96 $(LIBTOOL) --mode=execute valgrind --tool=cachegrind --branch-sim=yes testapp
97 cg_annotate cachegrind.out.* --auto=yes > /tmp/cachegrind.out
100 rm -f callgrind.out.*
101 $(LIBTOOL) --mode=execute valgrind --tool=callgrind testapp
102 callgrind_annotate callgrind.out.* --auto=yes > /tmp/callgrind.out
106 $(LIBTOOL) --mode=execute valgrind --tool=helgrind testapp
109 $(LIBTOOL) --mode=execute valgrind --tool=helgrind ${top_builddir}/clients/memslap --server=localhost --concurrency=30
111 test-no-outputdiff: test
114 $(LIBTOOL) --mode=execute valgrind --leak-check=yes --show-reachable=yes --log-file=/tmp/valgrind.out testapp