view tests/test.sh @ 74:d78c80be335f qt5

Update for Qt5
author Chris Cannam
date Tue, 30 Apr 2013 16:13:56 +0100
parents 9cc5e78dcfbd
children 2633976fbef5
line wrap: on
line source
#!/bin/bash

mypath=`dirname $0`



for x in \
    supportprogs \
    helpfulflags \
    transforms-basic \
    audioformat \
    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