summaryrefslogtreecommitdiffstats
path: root/pts/test-resources/quake4/parse-results.php
blob: a538b81eae122eb437f192ac7ce32fe38ec59318 (plain)
1
2
3
4
5
<?php
$log_file = file_get_contents(getenv("LOG_FILE"));
$BENCHMARK_RESULTS = substr($log_file, strrpos($log_file, "seconds =") + 9);
echo trim(substr($BENCHMARK_RESULTS, 0, strpos($BENCHMARK_RESULTS, "fps")));
?>