Mercurial > hg > sonic-annotator
view tests/test.sh @ 196:082c3f21f49e
Simple MIDI writer test
author | Chris Cannam |
---|---|
date | Tue, 01 Sep 2015 15:51:07 +0100 |
parents | 4ef452f5fefc |
children | 3b7ec45abd1c |
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-writer \ csv-destinations \ lab-writer \ lab-destinations \ midi-destinations \ midi-writer \ json-destinations \ json-writer \ 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