view test/runtests.sh @ 419:7c0598f69cf3

Fixed typo in eorb opcodes
author lost@l-w.ca
date Fri, 13 Aug 2010 18:51:12 -0600
parents a741d2e4869f
children
line wrap: on
line source

#!/bin/bash
#
# run the various tests under the tests/ folder recursively

function runtests()
{
	local fn
	local base="$2"
	local odir=`pwd`
	local dir="$1"
	
	cd "$dir"

	for fn in *.t; do
		if [ -d "$fn" ]; then
			echo "Running tests in $base/$fn"
			runtests "$fn" "$base/$fn"
		elif [ -r "$fn" ]; then
			echo "Running test $fn"
			testcount=$(($testcount+1))
			TESTSTATE=failed
			source "$fn"
			if [ "$TESTSTATE" = ok ]; then
				testpassed=$(($testpassed+1))
			else
				testfailed=$(($testfailed+1))
			fi
		fi
	done
	
	cd "$odir"
}

testcount=0
testfailed=0
testpassed=0

dir="$1"
if [ "x$dir" = "x" ]; then
	dir=.
fi

runtests "$dir" "$dir"

echo "Passed $testpassed tests of $testcount"
if [ "$testfailed" -ne 0 ]; then
	echo "Failed $testfailed of $testcount tests!"
	exit 1
fi
exit 0