Mercurial > hg > piper-cpp
comparison test/test-server.sh @ 117:5dffc5147176
Small simplification
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Thu, 27 Oct 2016 11:40:57 +0100 |
parents | d15cb1151d76 |
children | ea06fae1567c |
comparison
equal
deleted
inserted
replaced
116:d15cb1151d76 | 117:5dffc5147176 |
---|---|
63 # (converting to JSON using piper-convert) and once with it directly | 63 # (converting to JSON using piper-convert) and once with it directly |
64 # in JSON mode | 64 # in JSON mode |
65 | 65 |
66 for format in capnp json ; do | 66 for format in capnp json ; do |
67 | 67 |
68 ( while read request ; do | 68 ( export VAMP_PATH="$vampsdkdir"/examples ; |
69 while read request ; do | |
69 validate_request "$request" | 70 validate_request "$request" |
70 echo "$request" | 71 echo "$request" |
71 done | | 72 done | |
72 if [ "$format" = "json" ]; then | 73 if [ "$format" = "json" ]; then |
73 VAMP_PATH="$vampsdkdir"/examples bin/piper-vamp-server -d json | 74 bin/piper-vamp-server -d json |
74 else | 75 else |
75 bin/piper-convert request -i json -o capnp | | 76 bin/piper-convert request -i json -o capnp | |
76 VAMP_PATH="$vampsdkdir"/examples bin/piper-vamp-server -d capnp | | 77 bin/piper-vamp-server -d capnp | |
77 bin/piper-convert response -i capnp -o json | 78 bin/piper-convert response -i capnp -o json |
78 fi | | 79 fi | |
79 while read response ; do | 80 while read response ; do |
80 echo "$response" >> "$allrespfile" | 81 echo "$response" >> "$allrespfile" |
81 validate_response "$response" | 82 validate_response "$response" |