File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -22,19 +22,21 @@ while (line = $stdin.gets)
22
22
else
23
23
end_time + 3600 * 24 - start_time # date overflow
24
24
end
25
- when /^(System|2D Graphics|3D Graphics) Benchmarks .*Index .* INDEX$/
25
+ when /^.+ Benchmarks .*Index .* INDEX$/
26
26
# System Benchmarks Partial Index BASELINE RESULT INDEX
27
27
# 2D Graphics Benchmarks Partial Index BASELINE RESULT INDEX
28
28
# 3D Graphics Benchmarks Index Values BASELINE RESULT INDEX
29
+ # Non-Index Benchmarks Partial Index BASELINE RESULT INDEX
29
30
line = $stdin. gets
30
31
line = line . chomp . resolve_invalid_bytes
31
32
32
33
throughput = line . split [ -2 ] . to_f unless line . empty?
33
- when /^.+? ([\d .]+) KBps\s +\( [\d .]+ s, \d + samples?\) /
34
+ when /^.+? ([\d .]+) ( KBps|lps) \s +\( [\d .]+ s, \d + samples?\) /
34
35
# File Write 1024 bufsize 2000 maxblocks 3121976.0 KBps (30.0 s, 7 samples)
35
36
# File Read 1024 bufsize 2000 maxblocks 438625975.6 KBps (30.0 s, 7 samples)
37
+ # Recursion Test -- Tower of Hanoi 16724188.3 lps (20.0 s, 7 samples)
36
38
throughput = $1. to_f
37
- when /^(System|2D Graphics|3D Graphics) Benchmarks Index Score .* ([0-9.]+)$/
39
+ when /^.+ Benchmarks Index Score .* ([0-9.]+)$/
38
40
score = $2
39
41
end
40
42
end
You can’t perform that action at this time.
0 commit comments