- Update TODO
[htmlpurifier.git] / test-settings.sample.php
blobed743e8c399777a39d3c703b8b296e8b82653409
1 <?php
3 // ATTENTION! DO NOT EDIT THIS FILE!
4 // This file is necessary to run the unit tests and profiling scripts.
5 // Please copy it to 'test-settings.php' and make the necessary edits.
7 // Some of these scripts run a long time, so it is recommended that you
8 // turn off the time limit
9 set_time_limit(0);
11 // Turning off output buffering will prevent mysterious errors from core dumps
12 @ob_end_flush();
14 // Where is SimpleTest located?
15 $simpletest_location = '/path/to/simpletest/';
17 // Where is CSSTidy located?
18 $csstidy_location = '/path/to/csstidy/';
20 // For tests/multitest.php, which versions to test?
21 $versions_to_test = array();
23 // For tests/multitest.php, what is the multi-version executable? It must
24 // accept an extra parameter (version number) before all other arguments
25 $phpv = 'phpv';
27 // How many times should profiling scripts iterate over the function? More runs
28 // means more accurate results, but they'll take longer to perform.
29 $GLOBALS['HTMLPurifierTest']['Runs'] = 2;