mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 14:58:42 +00:00
4c24a51054
- Improve documentation for stub files - Synchronize stub files between extras/ and library/ - Remove unnecessary include in function file - Remove special treatment of Bootstrap - Improve docs for HTMLPurifier, converted singleton to use static member variables and removed reference - Add HTMLPurifier.path.php stub file - Update sample test settings - Reorganize includes in test files git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1559 48356398-32a2-884e-a903-53898d9a118a
38 lines
1.2 KiB
PHP
38 lines
1.2 KiB
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
|
|
$data = @ob_get_clean();
|
|
if ($data !== false && $data !== '') {
|
|
echo "Output buffer contains data [".urlencode($data)."]\n";
|
|
exit;
|
|
}
|
|
|
|
// Where is SimpleTest located?
|
|
$simpletest_location = '/path/to/simpletest/';
|
|
|
|
// Where is CSSTidy located?
|
|
$csstidy_location = '/path/to/csstidy/';
|
|
|
|
// For tests/multitest.php, which versions to test?
|
|
$versions_to_test = array();
|
|
|
|
// Stable PHP binary to use when invoking maintenance scripts.
|
|
$php = 'php';
|
|
|
|
// For tests/multitest.php, what is the multi-version executable? It must
|
|
// accept an extra parameter (version number) before all other arguments
|
|
$phpv = 'phpv';
|
|
|
|
// 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;
|
|
|