summaryrefslogtreecommitdiffstats
path: root/pts/test-resources/specviewperf9/parse-results.php
blob: 965d3d5906a1ebff020497aa68ba90d84a59ccf7 (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, "Mean =") + 6);
echo trim(substr($BENCHMARK_RESULTS, 0, strpos($BENCHMARK_RESULTS, "\n")));

?>