OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import page_sets | 5 from telemetry import benchmark |
| 6 |
6 from measurements import v8_detached_context_age_in_gc | 7 from measurements import v8_detached_context_age_in_gc |
7 from measurements import v8_gc_times | 8 from measurements import v8_gc_times |
8 from telemetry import benchmark | 9 import page_sets |
9 | 10 |
10 | 11 |
11 @benchmark.Disabled('win') # crbug.com/416502 | 12 @benchmark.Disabled('win') # crbug.com/416502 |
12 class V8GarbageCollectionCases(benchmark.Benchmark): | 13 class V8GarbageCollectionCases(benchmark.Benchmark): |
13 """Measure V8 GC metrics on the garbage collection cases.""" | 14 """Measure V8 GC metrics on the garbage collection cases.""" |
14 test = v8_gc_times.V8GCTimes | 15 test = v8_gc_times.V8GCTimes |
15 page_set = page_sets.GarbageCollectionCasesPageSet | 16 page_set = page_sets.GarbageCollectionCasesPageSet |
16 | 17 |
17 @classmethod | 18 @classmethod |
18 def Name(cls): | 19 def Name(cls): |
(...skipping 28 matching lines...) Expand all Loading... |
47 class V8DetachedContextAgeInGC(benchmark.Benchmark): | 48 class V8DetachedContextAgeInGC(benchmark.Benchmark): |
48 """Measures the number of GCs needed to collect a detached context. | 49 """Measures the number of GCs needed to collect a detached context. |
49 | 50 |
50 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" | 51 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" |
51 test = v8_detached_context_age_in_gc.V8DetachedContextAgeInGC | 52 test = v8_detached_context_age_in_gc.V8DetachedContextAgeInGC |
52 page_set = page_sets.PageReloadCasesPageSet | 53 page_set = page_sets.PageReloadCasesPageSet |
53 | 54 |
54 @classmethod | 55 @classmethod |
55 def Name(cls): | 56 def Name(cls): |
56 return 'v8.detached_context_age_in_gc' | 57 return 'v8.detached_context_age_in_gc' |
OLD | NEW |