Mercurial > hg > sonic-annotator
view tests/test.sh @ 155:6dc824c3f5e1 labfile
Add lab writer tests (currently failing)
author | Chris Cannam |
---|---|
date | Tue, 14 Oct 2014 18:39:16 +0100 |
parents | 6ff4da31db8b |
children | 0fd5c3c28814 |
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 \ lab-writer \ lab-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