source: trunk/tests/run_tests.sh @ 399

Last change on this file since 399 was 399, checked in by anonymous, 12 years ago

Updated email address validation

File size: 212 bytes
Line 
1#!/bin/sh
2
3# Be in the directory with all the tests.
4cd `dirname $0`;
5
6# Create database.
7mysql -e 'CREATE DATABASE IF NOT EXISTS `test`';
8
9# Run tests sequentially.
10for foo in *Test.php;
11do
12    php $foo;
13done;
Note: See TracBrowser for help on using the repository browser.