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

$log_file = file_get_contents(getenv("LOG_FILE"));
$BENCHMARK_RESULTS = trim(substr($log_file, 0, strrpos($log_file, " fps")));
$BENCHMARK_RESULTS = trim(substr($BENCHMARK_RESULTS, strrpos($BENCHMARK_RESULTS, ' ')));
echo $BENCHMARK_RESULTS;

?>