Mercurial > hg > sonic-annotator
view tests/test.sh @ 150:d86ef0a88fa4 jams
JSON destination tests
author | Chris Cannam |
---|---|
date | Tue, 14 Oct 2014 11:24:05 +0100 |
parents | 1a6eab755c81 |
children | 4b19d824a213 |
line wrap: on
line source
#!/bin/bash mypath=`dirname $0` for x in \ supportprogs \ helpfulflags \ transforms-basic \ audioformat \ vamp-test-plugin \ as-advertised \ rdf-writer \ rdf-destinations \ csv-destinations \ midi-destinations \ json-destinations \ summaries \ multiple-audio \ ; do echo -n "$x: " if ( cd $mypath/test-$x ; bash ./test-$x.sh ); then echo test succeeded else echo "*** Test FAILED" exit 1 fi done