1
0
Fork 0

chore: log progress in parsing benchmark

pull/680/head
Felix Becker 2018-11-11 02:52:10 +01:00
parent 0a48df9455
commit 2a2fa1ca8d
1 changed files with 2 additions and 2 deletions

View File

@ -45,8 +45,8 @@ foreach($frameworks as $framework) {
if (filesize($testCaseFile) > 10000) { if (filesize($testCaseFile) > 10000) {
continue; continue;
} }
if ($idx % 1000 === 0) { if ($idx % 500 === 0) {
echo "$idx\n"; echo $idx . '/' . count($testProviderArray) . PHP_EOL;
} }
$fileContents = file_get_contents($testCaseFile); $fileContents = file_get_contents($testCaseFile);