c840f68cc9d3124282bbf441af6719c541d624cf
[awesomized/libmemcached] / tests / Makefile.am
1 LDADDS = $(top_builddir)/libmemcached/libmemcached.la
2
3 if BUILD_LIBMEMCACHEDUTIL
4 LDADDS+= $(top_builddir)/libmemcachedutil/libmemcachedutil.la
5 endif
6
7 EXTRA_DIST = output.res output2.res\
8 r/memcat.res\
9 r/memcp.res\
10 r/memrm.res\
11 r/memslap.res\
12 r/memstat.res\
13 t/memcat.test\
14 t/memcp.test\
15 t/memrm.test\
16 t/memslap.test\
17 t/memstat.test
18
19 LIBS =
20
21 noinst_HEADERS = test.h server.h ketama_test_cases.h
22 noinst_PROGRAMS = testapp testplus udptest atomsmasher startservers
23 noinst_LTLIBRARIES= libserver.la libtest.la
24
25 libserver_la_SOURCES= server.c
26 libtest_la_SOURCES= test.c
27
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)
31
32 testplus_SOURCES = plus.cpp
33 testplus_LDADD = libtest.la libserver.la $(LDADDS)
34
35 udptest_SOURCES = udp.c
36 udptest_LDADD = libtest.la libserver.la $(LDADDS)
37
38 atomsmasher_SOURCES = atomsmasher.c
39 atomsmasher_LDADD = $(top_builddir)/clients/libgenexec.la libtest.la libserver.la $(LDADDS)
40
41 startservers_SOURCES = start.c
42 startservers_LDADD = libserver.la $(LDADDS)
43
44 record:
45 ./testapp > output.res
46 ./testplus > output_plus.res
47
48 client-record:
49 sh t/memcat.test > r/memcat.res
50 sh t/memcp.test > r/memcp.res
51 sh t/memrm.test > r/memrm.res
52 sh t/memslap.test > r/memslap.res
53 sh t/memstat.test > r/memstat.res
54
55 record-extended:
56 ./testapp extended > output2.res
57
58 test: testapp testplus library_test
59 echo "Tests completed"
60
61 library_test:
62 ./testapp > output.cmp
63 diff output.res output.cmp
64 # ./testplus > output_plus.cmp
65 # diff output_plus.res output_plus.cmp
66
67 clients:
68 memcached -d -P /tmp/Xumemc.pid -p 12555
69 export MEMCACHED_SERVERS="localhost:12555"
70 sh t/memcat.test > r/memcat.cmp
71 diff r/memcat.res r/memcat.cmp
72 sh t/memcp.test > r/memcp.cmp
73 diff r/memcp.res r/memcp.cmp
74 sh t/memrm.test > r/memrm.cmp
75 diff r/memrm.res r/memrm.cmp
76 sh t/memslap.test > r/memslap.cmp
77 diff r/memslap.res r/memslap.cmp
78 sh t/memstat.test > r/memstat.cmp
79 diff r/memstat.res r/memstat.cmp
80 cat /tmp/Xumemc.pid | xargs kill
81 rm /tmp/Xumemc.pid
82
83 valgrind:
84 libtool --mode=execute valgrind --leak-check=yes --show-reachable=yes testapp
85
86 cachegrind:
87 rm -f cachegrind.out.*
88 libtool --mode=execute valgrind --tool=cachegrind --branch-sim=yes testapp
89 cg_annotate cachegrind.out.* --auto=yes > /tmp/cachegrind.out
90
91 callgrind:
92 rm -f callgrind.out.*
93 libtool --mode=execute valgrind --tool=callgrind testapp
94 callgrind_annotate callgrind.out.* --auto=yes > /tmp/callgrind.out
95
96 helgrind:
97 rm -f helgrind.out.*
98 libtool --mode=execute valgrind --tool=helgrind testapp
99
100 helgrind-slap:
101 libtool --mode=execute valgrind --tool=helgrind ${top_builddir}/clients/memslap --server=localhost --concurrency=30
102
103 test-no-outputdiff: testapp
104 ./testapp > /dev/null
105 @echo "Test completed"