Mercurial > hg > sonic-annotator
view tests/test-vamp-test-plugin/test-vamp-test-plugin.sh @ 208:c17b184c16db
Update JAMS output to JAMS v0.2.0. We now (for the first time?!) write actual JAMS schema-compliant output when possible, though it isn't possible for many types of plugin. The output for all tested combinations of transforms is valid JSON even where it isn't schema-compliant.
author | Chris Cannam |
---|---|
date | Wed, 04 Nov 2015 10:07:29 +0000 |
parents | 7a31201dc42d |
children | ffa60ff17a86 |
line wrap: on
line source
#!/bin/bash . ../include.sh infile=$audiopath/20sec-silence.wav tmpcsv=$mypath/tmp_1_$$.csv trap "rm -f $tmpcsv" 0 for output in instants curve-oss curve-fsr curve-fsr-timed 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" || \ fail "Output differs from expected for $output" done exit 0