From: Trond Norbye Date: Fri, 13 Mar 2009 10:21:03 +0000 (+0100) Subject: Create a new make-target: test-no-outputdiff X-Git-Tag: 0.27~16 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=21f37886246551f9118b03275dde7534793c3809;p=awesomized%2Flibmemcached Create a new make-target: test-no-outputdiff --- diff --git a/Makefile.am b/Makefile.am index b342d866..cbec4971 100644 --- a/Makefile.am +++ b/Makefile.am @@ -11,6 +11,9 @@ test-extended: all valgrind: @(cd tests; ${MAKE} valgrind) +test-no-outputdiff: + @(cd tests; ${MAKE} test-no-outputdiff) + rpm: all dist cp libmemcached-$(VERSION).tar.gz /home/brian/rpm/SOURCES/ rpmbuild -ba support/libmemcached.spec diff --git a/tests/Makefile.am b/tests/Makefile.am index 7a642be7..b06d208a 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -71,3 +71,7 @@ clients: valgrind: libtool --mode=execute valgrind --leak-check=yes --show-reachable=yes testapp + +test-no-outputdiff: testapp + ./testapp > /dev/null + @echo "Test completed"