| Index: tools/perf/benchmarks/v8.py
|
| diff --git a/tools/perf/benchmarks/v8.py b/tools/perf/benchmarks/v8.py
|
| index ca77615118192b86bf0ea68f484c2f45622894aa..4d5a82dbdd0f45c8bc023bec07e9fa6fc24e6fc3 100644
|
| --- a/tools/perf/benchmarks/v8.py
|
| +++ b/tools/perf/benchmarks/v8.py
|
| @@ -81,7 +81,7 @@ class _InfiniteScrollBenchmark(perf_benchmark.PerfBenchmark):
|
| '--disable-notifications',
|
| # This overrides any existing --js-flags, hence we have to include the
|
| # previous flags as well.
|
| - '--js-flags="--heap-growing-percent=10 %s"' %
|
| + '--js-flags=--heap-growing-percent=10 %s' %
|
| (' '.join(existing_js_flags))
|
| ])
|
|
|
| @@ -154,7 +154,7 @@ class V8TodoMVCIgnition(perf_benchmark.PerfBenchmark):
|
| options.AppendExtraBrowserArgs([
|
| # This overrides any existing --js-flags, hence we have to include the
|
| # previous flags as well.
|
| - '--js-flags="--ignition %s"' % (' '.join(existing_js_flags))
|
| + '--js-flags=--ignition %s' % (' '.join(existing_js_flags))
|
| ])
|
|
|
| def CreateTimelineBasedMeasurementOptions(self):
|
|
|