summaryrefslogtreecommitdiffstats
path: root/pts/test-resources/nexuiz/parse-results.php
blob: 34fffa229e60ecf6f49038f524226a02fc175c66 (plain)
1
2
3
4
5
6
7
<?php
$log_file = file_get_contents(getenv("LOG_FILE"));
$BENCHMARK_RESULTS = trim(substr($log_file, strrpos($log_file, "min/avg/max:") + 12));
$BENCHMARK_RESULTS = trim(substr($BENCHMARK_RESULTS, strpos($BENCHMARK_RESULTS, ' ')));
$BENCHMARK_RESULTS = trim(substr($BENCHMARK_RESULTS, 0, strpos($BENCHMARK_RESULTS, ' ')));
echo $BENCHMARK_RESULTS;
?>