summaryrefslogtreecommitdiffstats
path: root/pts/test-resources/gtkperf/parse-results.php
blob: 2973b83d51db647a72445a161a2aae7a691f57d4 (plain)
1
2
3
4
5
6
<?php
$log_file = file_get_contents(getenv("LOG_FILE"));
$BENCHMARK_RESULTS = substr($log_file, strrpos($log_file, "time:") + 5);
echo trim(substr($BENCHMARK_RESULTS, 0, strpos($BENCHMARK_RESULTS, "\n")));

?>