From 60c599036e528bc8a856c3312f0222cc7b1fd32a Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 20 Sep 2010 13:42:59 -0700 Subject: test: Fix test suite so that --valgrind option works. The output is ugly, and we need a better suppressions file, but this is at least a start. --- test/valgrind/default.supp | 0 test/valgrind/valgrind.sh | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 test/valgrind/default.supp create mode 100755 test/valgrind/valgrind.sh (limited to 'test/valgrind') diff --git a/test/valgrind/default.supp b/test/valgrind/default.supp new file mode 100644 index 00000000..e69de29b diff --git a/test/valgrind/valgrind.sh b/test/valgrind/valgrind.sh new file mode 100755 index 00000000..582b4dca --- /dev/null +++ b/test/valgrind/valgrind.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +base=$(basename "$0") + +TRACK_ORIGINS= + +VALGRIND_VERSION=$(valgrind --version) +VALGRIND_MAJOR=$(expr "$VALGRIND_VERSION" : '[^0-9]*\([0-9]*\)') +VALGRIND_MINOR=$(expr "$VALGRIND_VERSION" : '[^0-9]*[0-9]*\.\([0-9]*\)') +test 3 -gt "$VALGRIND_MAJOR" || +test 3 -eq "$VALGRIND_MAJOR" -a 4 -gt "$VALGRIND_MINOR" || +TRACK_ORIGINS=--track-origins=yes + +exec valgrind -q --error-exitcode=126 \ + --leak-check=no \ + --suppressions="$GIT_VALGRIND/default.supp" \ + --gen-suppressions=all \ + $TRACK_ORIGINS \ + --log-fd=4 \ + --input-fd=4 \ + $GIT_VALGRIND_OPTIONS \ + "$GIT_VALGRIND"/../../"$base" "$@" -- cgit v1.2.3