Mercurial > hg > sonic-annotator
view tests/test-midi-writer/test-midi-writer.sh @ 276:329c29264aaf piper-nopiper
Hm, can't do that yet -- it's only supported in Qt 5.7 which is really too new for us
author | Chris Cannam |
---|---|
date | Fri, 25 Nov 2016 14:35:35 +0000 |
parents | 082c3f21f49e |
children |
line wrap: on
line source
#!/bin/bash . ../include.sh infile=$audiopath/20sec-silence.wav tmpmidi=$mypath/tmp_1_$$.mid trap "rm -f $tmpmidi" 0 for output in notes-regions curve-vsr; do flag="" $r -d "$testplug:$output" -w midi --midi-one-file "$tmpmidi" --midi-force "$infile" 2>/dev/null || \ fail "Failed to run for plugin $testplug with output $output and no additional flags" midicompare "$tmpmidi" "$mypath/expected/$output.mid" || \ faildiff_od "Output differs from expected for output $output" "$tmpmidi" "$mypath/expected/$output.mid" done exit 0