view tests/test.sh @ 216:276139d61c2f

Added tag sonic-annotator-1.3 for changeset 710f4885f901
author Chris Cannam
date Thu, 05 Nov 2015 15:36:53 +0000
parents f35bbb3e4d41
children b84b946e8542
line wrap: on
line source
#!/bin/bash

mypath=`dirname $0`

for x in \
    supportprogs \
    helpfulflags \
    transforms-basic \
    audioformat \
    vamp-test-plugin \
    as-advertised \
    rdf-writer \
    rdf-destinations \
    csv-writer \
    csv-destinations \
    lab-writer \
    lab-destinations \
    midi-writer \
    midi-destinations \
    jams-writer \
    jams-destinations \
    summaries \
    multiple-audio \
    ; 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