summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/benchmark/utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/benchmark/utils.py b/scripts/benchmark/utils.py
index 11aad805..fe0bd7f7 100644
--- a/scripts/benchmark/utils.py
+++ b/scripts/benchmark/utils.py
@@ -50,7 +50,8 @@ def run_binary(command, arguments):
full_command = command + " " + " ".join(arguments)
print("[benchmark] Calling binary: %s" % str(full_command))
try:
- return subprocess.Popen(full_command, shell=True, stdout=subprocess.PIPE).stdout.read()
+ result = subprocess.Popen(full_command, shell=True, stdout=subprocess.PIPE).stdout.read()
+ return result.decode("ascii")
except OSError as e:
print("[benchmark] Error while running the binary, got exception: %s" + str(e))
return False