annotate tests/test-jams-writer/test-jams-writer.sh @ 202:cdd825dbba35

Fix to writer tag (thanks LW)
author Chris Cannam
date Fri, 02 Oct 2015 08:41:55 +0100
parents f35bbb3e4d41
children 1f8fef5c6ea2
rev   line source
Chris@191 1 #!/bin/bash
Chris@191 2
Chris@191 3 . ../include.sh
Chris@191 4
Chris@191 5 tmpjson=$mypath/tmp_1_$$.json
Chris@191 6
Chris@191 7 silentfile=$audiopath/20sec-silence.wav
Chris@191 8
Chris@191 9 trap "rm -f $tmpjson" 0
Chris@191 10
Chris@191 11 transformdir=$mypath/transforms
Chris@191 12
Chris@200 13 mandatory="-w jams"
Chris@197 14
Chris@191 15 # This does not yet test for correct values, only for parseable json
Chris@191 16
Chris@191 17 for output in instants curve-oss curve-fsr curve-fsr-timed curve-vsr grid-oss grid-fsr notes-regions; do
Chris@191 18
Chris@200 19 $r -d "$testplug:$output" $mandatory --jams-one-file "$tmpjson" --jams-force "$silentfile" 2>/dev/null || \
Chris@191 20 fail "Failed to run for plugin $testplug with output $output"
Chris@191 21
Chris@191 22 check_json "$tmpjson" "test plugin output $output"
Chris@191 23 done
Chris@191 24