summaryrefslogtreecommitdiffstats
path: root/pts/test-resources/ut2004-demo/parse-results.php
blob: 3ff08b856f27b3fb35248b18c80351cbc49bfac4 (plain)
1
2
3
4
5
6
7
8
<?php

$file = trim(shell_exec("cat .ut2004demo/Benchmark/benchmark.log"));
$line = substr($file, strrpos($file, "\n") + 1);
$line_r = explode("/", $line);

echo trim($line_r[1]);
?>