Mercurial > hg > sonic-annotator
view tests/test.sh @ 119:7a31201dc42d test-reorg
Split out tests into individual directories, with simpler naming therein
author | Chris Cannam |
---|---|
date | Wed, 08 Oct 2014 15:08:57 +0100 |
parents | 344d5982bbf8 |
children | 1a6eab755c81 |
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 \ 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