Mercurial > hg > sonic-annotator
view tests/test.sh @ 75:2633976fbef5 qt5
Tests (currently failing) for vamp-test-plugin
author | Chris Cannam |
---|---|
date | Tue, 30 Apr 2013 17:12:21 +0100 |
parents | d78c80be335f |
children | 344d5982bbf8 |
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 \ ; do echo -n "$x: " if ( cd $mypath ; bash ./test-$x.sh ); then echo test succeeded else echo "*** Test FAILED" exit 1 fi done