annotate tests/test-json-writer/test-json-writer.sh @ 198:68daabfc4ccc

Use iconv instead of uconv (present on OS/X)
author Chris Cannam
date Tue, 01 Sep 2015 17:29:02 +0100
parents 3b7ec45abd1c
children
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@197 13 mandatory="-w json --json-format 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@197 19 $r -d "$testplug:$output" $mandatory --json-one-file "$tmpjson" --json-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