From 7b45ebd870d32add1d4185159ec856f9d9684b5c Mon Sep 17 00:00:00 2001 From: Ken Hornstein Date: Fri, 10 Feb 2012 23:38:40 -0500 Subject: [PATCH] Fix this so it works when valgrind is installed. --- test/inc/test-deb359167 | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/test/inc/test-deb359167 b/test/inc/test-deb359167 index 26aea11..72c6b7f 100755 --- a/test/inc/test-deb359167 +++ b/test/inc/test-deb359167 @@ -12,9 +12,16 @@ require_prog valgrind TESTMBOX="$THISDIR/deb359167.mbox" -if [ "$(${MD5SUM} "$TESTMBOX" | cut -d ' ' -f 1)" != "e6ac458b8cccba2b2fd866fb505aeb5e" ]; then +if [ "$(output_md5 "$TESTMBOX" | cut -d ' ' -f 1)" != "e6ac458b8cccba2b2fd866fb505aeb5e" ]; then echo "Test mailbox has been corrupted" exit 1 fi +# +# valgrind refuses to run on a setuid/setgid program, so chmod inc so it +# isn't (just in case) +# + +chmod 755 ${MH_INST_DIR}${bindir}/inc + valgrind --error-exitcode=1 --quiet inc -silent -file "$TESTMBOX" -- 1.7.10.4