From 0ea53e5a3dd72765216c66a6a3794fcd4beacb4c Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Tue, 6 Nov 2007 03:34:45 +0000 Subject: [PATCH] Make multitest.php also manage standalone version testing. git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1442 48356398-32a2-884e-a903-53898d9a118a --- tests/multitest.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/multitest.php b/tests/multitest.php index f555b368..88031207 100644 --- a/tests/multitest.php +++ b/tests/multitest.php @@ -28,11 +28,14 @@ echo str_repeat('-', 70) . "\n"; echo "HTML Purifier\n"; echo "Multiple PHP Versions Test\n\n"; +passthru("php ../maintenance/merge-library.php"); + foreach ($versions_to_test as $version) { if ($version === 'FLUSH') { shell_exec('php ../maintenance/flush-definition-cache.php'); continue; } passthru("phpv $version index.php"); + passthru("phpv $version index.php standalone"); echo "\n\n"; }