Merge branch 'PHP-7.4'

* PHP-7.4:
  improve test clean section
  move NEWS entry
This commit is contained in:
Remi Collet 2019-06-20 11:52:54 +02:00
commit 714cd7ff3e

View File

@ -15,6 +15,11 @@ foreach (glob(__DIR__ . '/*/' . __DIR__ . '/*.bin') as $p) {
<?php
foreach (glob(__DIR__ . '/*/' . __DIR__ . '/*.bin') as $p) {
unlink($p);
$p = dirname($p);
while(strlen($p) > strlen(__DIR__)) {
rmdir($p);
$p = dirname($p);
}
}
?>
--EXPECTF--