annotate tests/test.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 3b7ec45abd1c
children b84b946e8542
rev   line source
Chris@0 1 #!/bin/bash
Chris@0 2
Chris@0 3 mypath=`dirname $0`
Chris@0 4
Chris@0 5 for x in \
Chris@0 6 supportprogs \
Chris@0 7 helpfulflags \
Chris@0 8 transforms-basic \
Chris@0 9 audioformat \
Chris@75 10 vamp-test-plugin \
Chris@0 11 as-advertised \
Chris@0 12 rdf-writer \
Chris@0 13 rdf-destinations \
Chris@156 14 csv-writer \
Chris@43 15 csv-destinations \
Chris@155 16 lab-writer \
Chris@154 17 lab-destinations \
Chris@197 18 midi-writer \
Chris@147 19 midi-destinations \
Chris@200 20 jams-writer \
Chris@200 21 jams-destinations \
Chris@0 22 summaries \
Chris@103 23 multiple-audio \
Chris@0 24 ; do
Chris@0 25
Chris@0 26 echo -n "$x: "
Chris@119 27 if ( cd $mypath/test-$x ; bash ./test-$x.sh ); then
Chris@0 28 echo test succeeded
Chris@0 29 else
Chris@0 30 echo "*** Test FAILED"
Chris@0 31 exit 1
Chris@0 32 fi
Chris@0 33
Chris@0 34 done
Chris@0 35