aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/serd_bench.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/serd_bench.py')
-rwxr-xr-xscripts/serd_bench.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/serd_bench.py b/scripts/serd_bench.py
index 89d34e1f..f3c3e148 100755
--- a/scripts/serd_bench.py
+++ b/scripts/serd_bench.py
@@ -69,10 +69,11 @@ def parse_time(report):
"Return user time and max RSS from a /usr/bin/time -v report"
time = memory = None
for line in report.split("\n"):
+ after_colon = line.find(":") + 1
if line.startswith("\tUser time"):
- time = float(line[line.find(":") + 1 :])
+ time = float(line[after_colon:])
elif line.startswith("\tMaximum resident set"):
- memory = float(line[line.find(":") + 1 :]) * 1024
+ memory = float(line[after_colon:]) * 1024
return (time, memory)