* Add ".deps.php" include-file preloaders for some dynamically-loaded
[mediawiki.git] / tests / LocalTestSettings.sample
blob94adeccd8f8a5a513a57a06485f519874d5c7b20
1 <?php
2 # This contains basic configuration values that are needed
3 # for RunTests.php.
5 # Full path to the mediawiki source code you want to test
6 $IP = '/var/www/mediawiki-cvs';
8 # Now we add that path to the default include_path
9 ini_set('include_path',ini_get('include_path').':'.$IP);
11 # Some options needed for database testing
12 $testOptions = array(
13     'mysql3' => array(
14         'server' => null,
15         'user' => null,
16         'password' => null,
17         'database' => null ),
18     'mysql4' => array(
19         'server' => null,
20         'user' => null,
21         'password' => null,
22         'database' => null ),
23     'postgresql' => array(
24         'server' => null,
25         'user' => null,
26         'password' => null,
27         'database' => null ),
28     );