view tests/test-parse-errors/test-parse-errors.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 56ff594b022c
children
line wrap: on
line source
#!/bin/bash

. ../include.sh

infile=$audiopath/3clicks8.wav
tmpfile=$mypath/tmp_$$
trap "rm -f $tmpfile" 0

for transform in "$mypath"/inputs/* ; do

    base=$(basename "$transform")
    expected="$mypath"/expected/"$base".txt

    if [ ! -f "$expected" ]; then
	fail "Internal error: Expected file $expected not found for transform $transform"
    fi

    if $r -t "$transform" -w csv --csv-one-file /dev/null "$infile" 2>"$tmpfile" ; then
	fail "Erroneously succeeds in running bogus transform $transform"
    fi

    cat "$expected" | while read line; do
	if ! fgrep -q "$line" "$tmpfile" ; then
	    fail "Expected output text \"$line\" not found in diagnostic output for transform $base"
	fi
    done
    
done