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