# HG changeset patch # User Chris Cannam # Date 1201884727 0 # Node ID c78ec2a208e235448482a4e64e79d3d9e64e16a7 # Parent 90fa946fda40b25ba6e6338ba70fa27bed678231 ... diff -r 90fa946fda40 -r c78ec2a208e2 valgrinder.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/valgrinder.sh Fri Feb 01 16:52:07 2008 +0000 @@ -0,0 +1,15 @@ +#!/bin/sh +ids=`VAMP_PATH=. vamp-simple-host --list-ids` +testfile=$1 +if [ ! -f "$testfile" ]; then + echo "Usage: valgrinder.sh " + exit 2 +fi +for id in $ids; do + id=`echo $id | sed 's/^vamp://'` + echo + echo "Testing $id on $testfile..." + echo + VAMP_PATH=. valgrind vamp-simple-host "$id" "$testfile" -o /dev/null + echo +done