Mercurial > hg > piper-cpp
comparison test.sh @ 150:bf8e3e7dd7de
Move some things around, and add overall test script
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Fri, 20 Jan 2017 17:45:54 +0000 |
parents | |
children | 3eb00e5c76c4 |
comparison
equal
deleted
inserted
replaced
149:70bf40743d6a | 150:bf8e3e7dd7de |
---|---|
1 #!/bin/bash | |
2 | |
3 set -eu | |
4 | |
5 mypath=$(dirname "$0") | |
6 | |
7 echo "Building and testing simple server..." | |
8 | |
9 make -f "$mypath"/Makefile clean all test | |
10 | |
11 echo | |
12 echo "Building and running test client..." | |
13 | |
14 ( cd "$mypath"/vamp-client/qt && qmake && make && | |
15 ./test ../../bin/piper-vamp-simple-server ) | |
16 | |
17 echo | |
18 echo "Done" | |
19 echo |