view tests/test.sh @ 87:52e5e2c03792

Update changelog and readme; remove out-of-date install file
author Chris Cannam
date Thu, 09 May 2013 13:51:02 +0100
parents 2633976fbef5
children 344d5982bbf8
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-destinations \
    summaries \
    ; do

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

done