view tests/test.sh @ 273:5db279f1e0f8 piper-nopiper

Switch the multiple-audio tests to using amplitudefollower -- percussiononsets is too sensitive to the very low-level noise that comes from variations in mp3 decoder fixed-point arithmetic function choice
author Chris Cannam
date Fri, 25 Nov 2016 13:37:02 +0000
parents 56ff594b022c
children
line wrap: on
line source
#!/bin/bash

mypath=`dirname $0`

for x in \
    supportprogs \
    helpfulflags \
    parse-errors \
    transforms-basic \
    audioformat \
    vamp-test-plugin \
    as-advertised \
    summaries \
    multiple-audio \
    csv-writer \
    csv-destinations \
    lab-writer \
    lab-destinations \
    rdf-writer \
    rdf-destinations \
    midi-writer \
    midi-destinations \
    jams-writer \
    jams-destinations \
    ; do

    echo -n "$x: "
    if ( cd $mypath/test-$x ; bash ./test-$x.sh ); then
	echo test succeeded
    else
	echo "*** Test FAILED"
	exit 1
    fi

done