#!/bin/sh # Be in the directory with all the tests. cd `dirname $0`; # Run tests sequentially. for foo in *Test.php; do /usr/local/bin/php $foo; done;