#!/bin/sh

TESTSET="blw rover"
CURDIR=`pwd`
for s in $TESTSET; do
	cd $s
	if test -f build-test
	then
		build-test
	fi
	cd $CURDIR
done
