summaryrefslogtreecommitdiffstats
path: root/pts/test-resources/graphics-magick/parse-results.php
blob: 14444b74750c25ac479c4ad0cd1a73663004c98d (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
$log_file = file_get_contents(getenv("LOG_FILE"));
$BENCHMARK_RESULTS = substr($log_file, strrpos($log_file, "Results: ") + 9);
$BENCHMARK_RESULTS = trim(substr($BENCHMARK_RESULTS, 0, strpos($BENCHMARK_RESULTS, "iter") - 1));

if($BENCHMARK_RESULTS < 2)
	$BENCHMARK_RESULTS = 0;

echo $BENCHMARK_RESULTS;

?>