Add install script for PEAR installs.
[htmlpurifier/bfroehle.git] / test-settings.sample.php
blob74e2de541f5fb855a4feb180c97e23dba1400255
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 // How many times should profiling scripts iterate over the function? More runs
18 // means more accurate results, but they'll take longer to perform.
19 $GLOBALS['HTMLPurifierTest']['Runs'] = 2;