#!/bin/sh

DOMAINS="blw rover"
CURDIR=`pwd`

for d in $DOMAINS; do
    echo "DOMAINS = $d"
    cd $d
    run-test
    cd $CURDIR
done
