summaryrefslogtreecommitdiffstats
path: root/pts/test-resources/vdrift/parse-results.php
blob: 1f6bcd1431e75d9bbb3f9eae2251ab06b395512c (plain)
1
2
3
4
5
6
7
<?php

$log_file = file_get_contents(getenv("LOG_FILE"));
$BENCHMARK_RESULTS = substr($log_file, strrpos($log_file, "FPS:") + 4);
echo trim(substr($BENCHMARK_RESULTS, 0, strpos($BENCHMARK_RESULTS, "\n")));

?>