Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(349)

Unified Diff: tools/perf/benchmarks/v8.py

Issue 2069953003: [perf] Don't ignore dump and process counts in TBMv2 memory-infra benchmarks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/perf/benchmarks/memory_infra.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/v8.py
diff --git a/tools/perf/benchmarks/v8.py b/tools/perf/benchmarks/v8.py
index 0fb58b73cdf02ddc19396fae789885fff228d09f..76f59b36322df69cb340eec2531d679ef68e495e 100644
--- a/tools/perf/benchmarks/v8.py
+++ b/tools/perf/benchmarks/v8.py
@@ -198,7 +198,8 @@ class V8MobileInfiniteScroll(_InfiniteScrollBenchmark):
class _V8MemoryAndCodeSizeBenchmark(perf_benchmark.PerfBenchmark):
"""Base class for benchmarks measuring code size."""
- _IGNORED_V8_STATS_RE = re.compile(r'_(std|count|min|sum|pct_\d{4}(_\d+)?)$')
+ _IGNORED_V8_STATS_RE = re.compile(
+ r'(?<!dump)(?<!process)_(std|count|min|sum|pct_\d{4}(_\d+)?)$')
def CreateTimelineBasedMeasurementOptions(self):
category_filter = tracing_category_filter.TracingCategoryFilter(
« no previous file with comments | « tools/perf/benchmarks/memory_infra.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698