Mercurial > hg > sonic-annotator
view tests/test.sh @ 147:1a6eab755c81 midi
Add MIDI destinations tests and fix feature writer bugs resulting from them
author | Chris Cannam |
---|---|
date | Tue, 14 Oct 2014 10:07:02 +0100 |
parents | 7a31201dc42d |
children | d86ef0a88fa4 6ff4da31db8b |
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 \ 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