Mercurial > hg > sonic-annotator
comparison tests/test.sh @ 74:d78c80be335f qt5
Update for Qt5
author | Chris Cannam |
---|---|
date | Tue, 30 Apr 2013 16:13:56 +0100 |
parents | 9cc5e78dcfbd |
children | 2633976fbef5 |
comparison
equal
deleted
inserted
replaced
73:b9b145d3013c | 74:d78c80be335f |
---|---|
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 \ |
13 csv-destinations \ | 15 csv-destinations \ |
14 summaries \ | 16 summaries \ |
15 ; do | 17 ; do |
16 | 18 |
17 echo -n "$x: " | 19 echo -n "$x: " |
18 if bash $mypath/test-$x.sh; then | 20 if ( cd $mypath ; bash ./test-$x.sh ); then |
19 echo test succeeded | 21 echo test succeeded |
20 else | 22 else |
21 echo "*** Test FAILED" | 23 echo "*** Test FAILED" |
22 exit 1 | 24 exit 1 |
23 fi | 25 fi |