Mercurial > hg > sonic-annotator
view tests/test.sh @ 281:c8162c2992f8 piper-nopiper
Further test updates. The AF results should match to 3dp with different MAD builds. The onset position results hopefully should match completely now prefix sorted, let's see.
author | Chris Cannam |
---|---|
date | Tue, 29 Nov 2016 17:14:21 +0000 |
parents | 56ff594b022c |
children |
line wrap: on
line source
#!/bin/bash mypath=`dirname $0` for x in \ supportprogs \ helpfulflags \ parse-errors \ 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