mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 14:58:42 +00:00
35487c02ae
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1303 48356398-32a2-884e-a903-53898d9a118a
21 lines
675 B
PHP
21 lines
675 B
PHP
<?php
|
|
|
|
// ATTENTION! DO NOT EDIT THIS FILE!
|
|
// This file is necessary to run the unit tests and profiling scripts.
|
|
// Please copy it to 'test-settings.php' and make the necessary edits.
|
|
|
|
// Some of these scripts run a long time, so it is recommended that you
|
|
// turn off the time limit
|
|
set_time_limit(0);
|
|
|
|
// Turning off output buffering will prevent mysterious errors from core dumps
|
|
@ob_end_flush();
|
|
|
|
// Where is SimpleTest located?
|
|
$simpletest_location = '/path/to/simpletest/';
|
|
|
|
// How many times should profiling scripts iterate over the function? More runs
|
|
// means more accurate results, but they'll take longer to perform.
|
|
$GLOBALS['HTMLPurifierTest']['Runs'] = 2;
|
|
|