Mercurial > hg > sonic-annotator
comparison tests/test.sh @ 0:581b1b150a4d
* copy to sonic-annotator
author | Chris Cannam |
---|---|
date | Thu, 11 Dec 2008 10:22:33 +0000 |
parents | |
children | 9cc5e78dcfbd |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:581b1b150a4d |
---|---|
1 #!/bin/bash | |
2 | |
3 mypath=`dirname $0` | |
4 | |
5 for x in \ | |
6 supportprogs \ | |
7 helpfulflags \ | |
8 transforms-basic \ | |
9 audioformat \ | |
10 as-advertised \ | |
11 rdf-writer \ | |
12 rdf-destinations \ | |
13 summaries \ | |
14 ; do | |
15 | |
16 echo -n "$x: " | |
17 if bash $mypath/test-$x.sh; then | |
18 echo test succeeded | |
19 else | |
20 echo "*** Test FAILED" | |
21 exit 1 | |
22 fi | |
23 | |
24 done | |
25 |