summaryrefslogtreecommitdiffstats
path: root/pts/test-resources/unigine-tropics/parse-results.php
blob: 773c29093d650e8caf908421f50482334a0e3de7 (plain)
1
2
3
4
5
<?php
$log_file = file_get_contents(getenv("LOG_FILE"));
$BENCHMARK_RESULTS = substr($log_file, strrpos($log_file, "FPS:") + 5);
echo trim(substr($BENCHMARK_RESULTS, 0, strpos($BENCHMARK_RESULTS, "\n")));
?>