aboutsummaryrefslogtreecommitdiff
path: root/crosperf/suite_runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'crosperf/suite_runner.py')
-rw-r--r--crosperf/suite_runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/crosperf/suite_runner.py b/crosperf/suite_runner.py
index 47e29c49..f69f3728 100644
--- a/crosperf/suite_runner.py
+++ b/crosperf/suite_runner.py
@@ -20,7 +20,7 @@ def GetProfilerArgs (benchmark):
if not perf_args_list[0] in ["record", "stat"]:
raise Exception("perf_args must start with either record or stat")
extra_test_args = ["profiler=custom_perf",
- ("profiler_args=\"'%s'\"" %
+ ("profiler_args='%s'" %
perf_args)]
return " ".join(extra_test_args)
else: