summaryrefslogtreecommitdiffstats
path: root/pts/test-resources/scimark2/parse-results.php
blob: c113d9acea01b972684551415532696574b3ede1 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

$log_file = file_get_contents(getenv("LOG_FILE"));
$BENCHMARK_RESULTS = trim(substr($log_file, strrpos($log_file, ":") + 1));

	if(($space_pos = strpos($BENCHMARK_RESULTS, " ")) > 0)
		$BENCHMARK_RESULTS = trim(substr($BENCHMARK_RESULTS, 0, $space_pos));

echo $BENCHMARK_RESULTS;

?>