view tests/test.sh @ 71:9600f5b8076f tip

latest version before copying fextractor
author gyorgyf
date Sun, 22 Sep 2013 21:55:40 +0200
parents 9cc5e78dcfbd
children
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 bash $mypath/test-$x.sh; then
	echo test succeeded
    else
	echo "*** Test FAILED"
	exit 1
    fi

done