This commit is contained in:
Hannes Verschore 2014-10-21 17:27:29 +02:00
Родитель e871372ba9
Коммит 9a3d696149
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -67,6 +67,15 @@ class WebGLSamples(Benchmark):
class Dromaeo(Benchmark):
def __init__(self):
Benchmark.__init__(self, "dromaeo", "1.0", "desktop-driver/dromaeo.html")
def processResults(self, results):
ret = []
for key in results:
if key == "total":
ret.append({'name': "__total__", 'time': results[key]})
else:
ret.append({'name': key, 'time': results[key]})
return ret
Benchmarks = [Octane(), SunSpider(), Kraken(), Dromaeo(), WebGLSamples()]