Index: trunk/phase3/tests/LocalTestSettings.sample |
— | — | @@ -0,0 +1,29 @@ |
| 2 | +<?php |
| 3 | +# This contains basic configuration values that are needed |
| 4 | +# for RunTests.php. |
| 5 | + |
| 6 | +# Full path to the mediawiki source code you want to test |
| 7 | +$IP = '/var/www/mediawiki-cvs'; |
| 8 | + |
| 9 | +# Now we add that path to the default include_path |
| 10 | +ini_set('include_path',ini_get('include_path').':'.$IP); |
| 11 | + |
| 12 | +# Some options needed for database testing |
| 13 | +$testOptions = array( |
| 14 | + 'mysql3' => array( |
| 15 | + 'server' => null, |
| 16 | + 'user' => null, |
| 17 | + 'password' => null, |
| 18 | + 'database' => null ), |
| 19 | + 'mysql4' => array( |
| 20 | + 'server' => null, |
| 21 | + 'user' => null, |
| 22 | + 'password' => null, |
| 23 | + 'database' => null ), |
| 24 | + 'postgresql' => array( |
| 25 | + 'server' => null, |
| 26 | + 'user' => null, |
| 27 | + 'password' => null, |
| 28 | + 'database' => null ), |
| 29 | + ); |
| 30 | +?> |
Property changes on: trunk/phase3/tests/LocalTestSettings.sample |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 31 | + native |
Added: svn:keywords |
2 | 32 | + Author Date Id Revision |