* * @file * @ingroup UtfNormal */ use UtfNormal\Validator; if (PHP_SAPI != 'cli') { die("Run me from the command line please.\n"); } require_once dirname(__DIR__) . '/vendor/autoload.php'; define('BENCH_CYCLES', 1); define('BIGSIZE', 1024 * 1024 * 10); // 10m ini_set('memory_limit', BIGSIZE + 120 * 1024 * 1024); $testfiles = array('testdata/washington.txt' => 'English text', 'testdata/berlin.txt' => 'German text', 'testdata/bulgakov.txt' => 'Russian text', 'testdata/tokyo.txt' => 'Japanese text', 'testdata/young.txt' => 'Korean text'); $normalizer = new Validator(); Validator::loadData(); foreach ($testfiles as $file => $desc) { benchmarkTest($normalizer, $file, $desc); } # ------- function benchmarkTest(&$u, $filename, $desc) { print "Testing {$filename} ({$desc})...\n"; $data = file_get_contents($filename); $all = $data; while (strlen($all) < BIGSIZE) { $all .= $all; } $data = $all; echo "Data is " . strlen($data) . " bytes.\n"; $forms = array('quickIsNFCVerify', 'cleanUp');