comparison vamp-server/test.sh @ 159:2ada256e47e1

Cut any spurious whitespace from wc output
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 20 Jan 2017 23:39:39 +0000
parents 0876b5e67afe
children 718dd5404855
comparison
equal deleted inserted replaced
158:0876b5e67afe 159:2ada256e47e1
123 123
124 # Now check the plugin lists, but as the descriptions etc are 124 # Now check the plugin lists, but as the descriptions etc are
125 # probably a bit fragile, let's just count the number of plugins 125 # probably a bit fragile, let's just count the number of plugins
126 126
127 # First, with no "from" arg to the list call 127 # First, with no "from" arg to the list call
128 list_no_from=$(head -n +1 "$allrespfile" | fmt -1 | grep '"key"' | wc -l) 128 list_no_from=$(head -n +1 "$allrespfile" | fmt -1 | grep '"key"' | wc -l | sed 's/[^0-9]//g')
129 129
130 # Now with a "from" arg that includes the library that exists 130 # Now with a "from" arg that includes the library that exists
131 list_with_good_from=$(tail -n +2 "$allrespfile" | head -n +1 | fmt -1 | 131 list_with_good_from=$(tail -n +2 "$allrespfile" | head -n +1 | fmt -1 |
132 grep '"key"' | wc -l) 132 grep '"key"' | wc -l | sed 's/[^0-9]//g')
133 133
134 # Now with a "from" arg that doesn't include any real library 134 # Now with a "from" arg that doesn't include any real library
135 list_with_bad_from=$(tail -n +3 "$allrespfile" | head -n +1 | fmt -1 | 135 list_with_bad_from=$(tail -n +3 "$allrespfile" | head -n +1 | fmt -1 |
136 grep '"key"' | wc -l) 136 grep '"key"' | wc -l | sed 's/[^0-9]//g')
137 137
138 if [ "$list_no_from" != "6" ]; then 138 if [ "$list_no_from" != "6" ]; then
139 echo "Wrong number of plugins from list response without \"from\" arg" 139 echo "Wrong number of plugins from list response without \"from\" arg"
140 echo "Expected 6, obtained $list_no_from" 140 echo "Expected 6, obtained $list_no_from"
141 false 141 false