Update browserbenchmarks.py
This commit is contained in:
Родитель
e871372ba9
Коммит
9a3d696149
|
@ -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()]
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче