X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2FMakefile.am;h=deb825c42ed979dea5e51d4e4e2037584c978b32;hb=bf4b5a21dde3199e1a57bf9521401262678c7f97;hp=57a6fe9ba9d09940041445b7265071548b3efd7b;hpb=aef60cba06c79c42f79532923aa49675386c552f;p=m6w6%2Flibmemcached diff --git a/tests/Makefile.am b/tests/Makefile.am index 57a6fe9b..deb825c4 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -9,10 +9,21 @@ testapp_SOURCES = test.c testapp_LDADD = $(LDADDS) record: - ./testapp output.txt > output.res + ./testapp > output.res + +record-extended: + ./testapp extended > output2.res + test: testapp - ./testapp output.txt > output.cmp + ./testapp > output.cmp diff output.res output.cmp +test-extended: testapp + ./testapp extended > output.cmp + diff output2.res output.cmp + valgrind: - libtool --mode=execute valgrind --leak-check=yes --show-reachable=yes testapp output.txt + libtool --mode=execute valgrind --leak-check=yes --show-reachable=yes testapp + +valgrind-extended: + libtool --mode=execute valgrind --leak-check=yes --show-reachable=yes testapp extended