source: trunk/tests/run_tests.sh @ 15

Last change on this file since 15 was 15, checked in by scdev, 19 years ago

M trunk/tests/run_tests.sh
Now can run tests without being in tests dir.

M trunk/tests/_config.inc.php
No change

M trunk/tests/Auth_SQLTest.php
...

M trunk/lib/RecordVersion.inc.php
Removed debugging.

M trunk/lib/DB.inc.php
Added die on connect error only if db_die_on_failure is true.

M trunk/lib/DBSessionHandler.inc.php
Added more accurate error-checking.

M trunk/lib/FormValidator.inc.php
Fixed email regex bugs.

M trunk/lib/SpellCheck.inc.php
Integrated lots of bug fixes from UK update.

M trunk/lib/Auth_SQL.inc.php
Lots of minor bug fixes.

M trunk/lib/App.inc.php
A couple minor bug fixes.

File size: 142 bytes
Line 
1#!/bin/sh
2
3# Be in the directory with all the tests.
4cd `dirname $0`;
5
6# Run tests sequentially.
7for foo in *Test.php;
8do
9    php $foo;
10done;
Note: See TracBrowser for help on using the repository browser.