annotate tests/test-jams-writer/test-jams-writer.sh @ 200:f35bbb3e4d41 sonic-annotator-1.2

Change of tack: rename the JSON writer to JAMS. It's simpler than having a JSON writer with a mandatory flag to tell it what sort of JSON to write.
author Chris Cannam
date Tue, 01 Sep 2015 17:51:03 +0100
parents tests/test-json-writer/test-json-writer.sh@3b7ec45abd1c
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