Mercurial > hg > sonic-annotator
view tests/test-vamp-test-plugin/test-vamp-test-plugin.sh @ 399:a3912193ce69 tip
Default branch is now named default on git as well as hg, in case we ever want to switch to mirroring in the other direction
author | Chris Cannam |
---|---|
date | Thu, 27 Aug 2020 15:57:37 +0100 |
parents | 23b1e214014a |
children |
line wrap: on
line source
#!/bin/bash . ../include.sh infile=$audiopath/20sec-silence.wav tmpcsv=$mypath/tmp_1_$$.csv trap "rm -f $tmpcsv" 0 minversion=5 $r --transform-minversion $testplug $minversion || \ fail "Vamp Test Plugin version is too old (at least v$minversion required)" for output in instants curve-oss curve-fsr curve-fsr-timed curve-fsr-mixed curve-vsr grid-oss grid-fsr notes-regions; do $r -d "$testplug:$output" -w csv --csv-one-file "$tmpcsv" --csv-force "$infile" 2>/dev/null || \ fail "Failed to run for plugin $testplug with output $output" csvcompare_ignorefirst "$tmpcsv" "$mypath/expected/vamp-test-plugin-$output.csv" || \ faildiff "Output differs from expected for $output" "$tmpcsv" "$mypath/expected/vamp-test-plugin-$output.csv" done exit 0