Mercurial > hg > sonic-annotator
view tests/test.sh @ 224:244de5f02214
Use float format for cached files in CodedAudioFileReader, to preserve internal representation (see comment)
author | Chris Cannam |
---|---|
date | Wed, 24 Feb 2016 10:28:47 +0000 |
parents | b84b946e8542 |
children | 56ff594b022c |
line wrap: on
line source
#!/bin/bash mypath=`dirname $0` for x in \ supportprogs \ helpfulflags \ transforms-basic \ audioformat \ vamp-test-plugin \ as-advertised \ summaries \ multiple-audio \ csv-writer \ csv-destinations \ lab-writer \ lab-destinations \ rdf-writer \ rdf-destinations \ midi-writer \ midi-destinations \ jams-writer \ jams-destinations \ ; 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