1
0
Fork 0

tests: fix benchmark on case sensitive filesystems (#573)

On case insensitive file systems, such as the defaults for Mac OS/Windows, this works, but it doesn't work for ext4, etc.

The folder being checked out is `validation/frameworks/codeigniter`, this searched for `validation/frameworks/CodeIgniter`
pull/576/head
Tyson Andre 2018-01-01 18:31:55 -08:00 committed by Felix Becker
parent 20960a8b9f
commit c48ee55808
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ use RecursiveIteratorIterator;
$totalSize = 0;
$frameworks = ["drupal", "wordpress", "php-language-server", "tolerant-php-parser", "math-php", "symfony", "CodeIgniter", "cakephp"];
$frameworks = ["drupal", "wordpress", "php-language-server", "tolerant-php-parser", "math-php", "symfony", "codeigniter", "cakephp"];
foreach($frameworks as $framework) {
$iterator = new RecursiveDirectoryIterator(__DIR__ . "/validation/frameworks/$framework");