view tests/test.sh @ 192:bb295c0feb3e

Fix JSON validity
author Chris Cannam
date Wed, 22 Jul 2015 14:34:26 +0100
parents 4ef452f5fefc
children 082c3f21f49e
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-destinations \
    json-destinations \
    json-writer \
    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