1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-08-09 15:47:25 +02:00
- Officially support 4.3.7 and up
- Modify PH5P to remove incompatible parameter type def
- Add more versions to multitest

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1441 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang
2007-11-05 05:25:59 +00:00
parent bb08f679f0
commit 68167176dc
5 changed files with 34 additions and 6 deletions

View File

@@ -1,11 +1,22 @@
<?php
$versions_to_test = array(
'FLUSH',
'4.3.7',
'4.3.8',
'4.3.9',
'FLUSH', // serialize's behavior changed to be non-backwards-compat
'4.3.10',
'4.3.11',
'4.4.6',
'4.4.7',
'5.0.4',
'5.0.5',
'5.1.4',
'5.1.6',
'5.2.0',
'5.2.1',
'5.2.2',
'5.2.3',
'5.2.4',
'5.2.5RC2-dev',
@@ -18,6 +29,10 @@ echo "HTML Purifier\n";
echo "Multiple PHP Versions Test\n\n";
foreach ($versions_to_test as $version) {
if ($version === 'FLUSH') {
shell_exec('php ../maintenance/flush-definition-cache.php');
continue;
}
passthru("phpv $version index.php");
echo "\n\n";
}