Make asmjs-ubench native harness report scores in ms.

This commit is contained in:
David Anderson 2013-05-06 17:52:36 -07:00 коммит произвёл Mozilla
Родитель 5146c56e35
Коммит 39ba42121a
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -43,7 +43,7 @@ def BenchmarkNative(options, args):
before = os.times()[4]
subprocess.check_call(['./run-' + benchmark, RunFactor], stdout=fp)
after = os.times()[4]
print(benchmark + ' - ' + str(after - before))
print(benchmark + ' - ' + str((after - before) * 1000)
def Exec(vec):
o = subprocess.check_output(vec, stderr=subprocess.STDOUT)