Add concept of a distinct port separate from a server.
[lhc/web/wiklou.git] / tests / LocalTestSettings.sample
1 <?php
2 # This contains basic configuration values that are needed
3 # for RunTests.php.
4
5 # Full path to the mediawiki source code you want to test
6 $IP = '/var/www/mediawiki-cvs';
7
8 # Now we add that path to the default include_path
9 ini_set('include_path',ini_get('include_path').':'.$IP);
10
11 # Some options needed for database testing
12 $testOptions = array(
13 'mysql3' => array(
14 'server' => null,
15 'port' => null,
16 'user' => null,
17 'password' => null,
18 'database' => null ),
19 'mysql4' => array(
20 'server' => null,
21 'port' => null,
22 'user' => null,
23 'password' => null,
24 'database' => null ),
25 'postgres' => array(
26 'server' => null,
27 'port' => null,
28 'user' => null,
29 'password' => null,
30 'database' => null ),
31 );
32 ?>