Mercurial > hg > qm-vamp-plugins
changeset 61:c78ec2a208e2
...
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Fri, 01 Feb 2008 16:52:07 +0000 |
parents | 90fa946fda40 |
children | f33b60d46d16 |
files | valgrinder.sh |
diffstat | 1 files changed, 15 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /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 <testfile.wav>" + 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