view valgrinder.sh @ 170:1a13ddc08313

Revert to previous (i.e. 1.7) defaults for range & bin count -- in any case they had been updated in only one place and so were firing the "inconsistent default" error from the plugin tester
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 07 Sep 2015 10:47:22 +0100
parents c78ec2a208e2
children
line wrap: on
line source
#!/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