view tests/test.sh @ 98:136d8496a4b8

Skip trying RDF parser if we have a filename ending in xml (we don't support RDF-XML and it just confuses the Turtle parser)
author Chris Cannam
date Wed, 01 Oct 2014 13:35:35 +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