annotate tests/test-supportprogs/test-supportprogs.sh @ 271:7b3a80021b7c piper-nopiper

Add MAD_BUFFER_GUARD padding at end of mp3 buffer, in order to ensure last frame is decoded successfully (otherwise the decoded audio is truncated). Another thing learned from madplay.
author Chris Cannam
date Thu, 24 Nov 2016 17:06:31 +0000
parents c17b184c16db
children 8233a26705ed
rev   line source
Chris@0 1 #!/bin/bash
Chris@0 2
Chris@0 3 fail() {
Chris@0 4 echo "Test failed: $1"
Chris@0 5 exit 1
Chris@0 6 }
Chris@0 7
Chris@0 8 xmllint --version 2>/dev/null || \
Chris@0 9 fail "Can't find required xmllint program"
Chris@0 10
Chris@0 11 rapper --version >/dev/null || \
Chris@0 12 fail "Can't find required rapper program"
Chris@0 13
Chris@198 14 iconv --version >/dev/null || \
Chris@199 15 fail "Can't find required iconv program"
Chris@188 16
Chris@151 17 echo '{}' | json_verify >/dev/null || \
Chris@151 18 fail "Can't find required json_verify program, or it doesn't seem to work"
Chris@151 19
Chris@208 20 echo '{}' | json_reformat >/dev/null || \
Chris@208 21 fail "Can't find required json_reformat program, or it doesn't seem to work"
Chris@208 22
Chris@0 23 exit 0
Chris@0 24