Mercurial > hg > sonic-annotator
comparison tests/test.sh @ 122:eb0f3a2029b8
Merge from test-reorg branch
author | Chris Cannam |
---|---|
date | Wed, 08 Oct 2014 15:38:48 +0100 |
parents | 7a31201dc42d |
children | 1a6eab755c81 |
comparison
equal
deleted
inserted
replaced
117:5be4995f4029 | 122:eb0f3a2029b8 |
---|---|
1 #!/bin/bash | 1 #!/bin/bash |
2 | 2 |
3 mypath=`dirname $0` | 3 mypath=`dirname $0` |
4 | |
5 | |
6 | 4 |
7 for x in \ | 5 for x in \ |
8 supportprogs \ | 6 supportprogs \ |
9 helpfulflags \ | 7 helpfulflags \ |
10 transforms-basic \ | 8 transforms-basic \ |
17 summaries \ | 15 summaries \ |
18 multiple-audio \ | 16 multiple-audio \ |
19 ; do | 17 ; do |
20 | 18 |
21 echo -n "$x: " | 19 echo -n "$x: " |
22 if ( cd $mypath ; bash ./test-$x.sh ); then | 20 if ( cd $mypath/test-$x ; bash ./test-$x.sh ); then |
23 echo test succeeded | 21 echo test succeeded |
24 else | 22 else |
25 echo "*** Test FAILED" | 23 echo "*** Test FAILED" |
26 exit 1 | 24 exit 1 |
27 fi | 25 fi |