# HG changeset patch # User Chris Cannam # Date 1477564857 -3600 # Node ID 5dffc51471766ccd4f4fe2db3b8f2d1b3d4f09bf # Parent d15cb1151d768fa219d06941a4eec1c37e6bdd75 Small simplification diff -r d15cb1151d76 -r 5dffc5147176 test/test-server.sh --- a/test/test-server.sh Thu Oct 27 11:39:41 2016 +0100 +++ b/test/test-server.sh Thu Oct 27 11:40:57 2016 +0100 @@ -65,15 +65,16 @@ for format in capnp json ; do - ( while read request ; do + ( export VAMP_PATH="$vampsdkdir"/examples ; + while read request ; do validate_request "$request" echo "$request" done | if [ "$format" = "json" ]; then - VAMP_PATH="$vampsdkdir"/examples bin/piper-vamp-server -d json + bin/piper-vamp-server -d json else bin/piper-convert request -i json -o capnp | - VAMP_PATH="$vampsdkdir"/examples bin/piper-vamp-server -d capnp | + bin/piper-vamp-server -d capnp | bin/piper-convert response -i capnp -o json fi | while read response ; do