view tests/test-parse-errors/test-parse-errors.sh @ 366:9f7297c47850

Update plugin handling to follow the smart pointers used in the svcore library. This is awkward in our context, and the outcome isn't a very nice one - but it does look as if we had the potential for use-after-free in cases where a plugin was both used "bare" and wrapped in an auto-deleting adapter; those should be fixed now
author Chris Cannam
date Thu, 23 Apr 2020 15:51:55 +0100
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