added scrupt for brute force callof valgrind over serialiser tests

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3576 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2010-09-30 21:48:16 +00:00
parent edd5aaf87a
commit 861dec8e0b

View File

@ -0,0 +1,9 @@
#!/bin/sh
echo This script will call valgrind on all executables of the current directory and launch a debugger in case it finds an error. If the script terminate with non error, then the test passes. Press enter when ready...
read tmp
for i in `find . -executable -type f | grep -v valgrind`; do
echo testing $i
valgrind --tool=memcheck --db-attach=yes ./$i
done