comparison tests/test.sh @ 81:9f78c80c80f1

Merge from qt5 branch. We now require qt5 for Sonic Annotator
author Chris Cannam
date Wed, 08 May 2013 16:52:37 +0100
parents 2633976fbef5
children 344d5982bbf8
comparison
equal deleted inserted replaced
73:b9b145d3013c 81:9f78c80c80f1
1 #!/bin/bash 1 #!/bin/bash
2 2
3 mypath=`dirname $0` 3 mypath=`dirname $0`
4
5
4 6
5 for x in \ 7 for x in \
6 supportprogs \ 8 supportprogs \
7 helpfulflags \ 9 helpfulflags \
8 transforms-basic \ 10 transforms-basic \
9 audioformat \ 11 audioformat \
12 vamp-test-plugin \
10 as-advertised \ 13 as-advertised \
11 rdf-writer \ 14 rdf-writer \
12 rdf-destinations \ 15 rdf-destinations \
13 csv-destinations \ 16 csv-destinations \
14 summaries \ 17 summaries \
15 ; do 18 ; do
16 19
17 echo -n "$x: " 20 echo -n "$x: "
18 if bash $mypath/test-$x.sh; then 21 if ( cd $mypath ; bash ./test-$x.sh ); then
19 echo test succeeded 22 echo test succeeded
20 else 23 else
21 echo "*** Test FAILED" 24 echo "*** Test FAILED"
22 exit 1 25 exit 1
23 fi 26 fi