source: trunk/tests/run_tests.sh @ 412

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

Updated email address validation

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