Index: bench/gen_bench_expectations.py |
diff --git a/bench/gen_bench_expectations.py b/bench/gen_bench_expectations.py |
index 628c985d65246c8b28f301881e50b4c98959a595..ffc64866b609601f412ad589c98b48f6e0b21c16 100644 |
--- a/bench/gen_bench_expectations.py |
+++ b/bench/gen_bench_expectations.py |
@@ -24,6 +24,10 @@ CONFIGS_TO_INCLUDE = ['simple_viewport_1000x1000', |
'simple_viewport_1000x1000_scalar_1.100000_gpu', |
] |
+# List of flaky SKPs that should be excluded. |
+SKPS_TO_EXCLUDE = ['desk_chalkboard.skp', |
+ ] |
+ |
def compute_ranges(benches): |
"""Given a list of bench numbers, calculate the alert range. |
@@ -57,7 +61,8 @@ def create_expectations_dict(revision_data_points): |
bench_dict = {} |
for point in revision_data_points: |
if (point.time_type or # Not walltime which has time_type '' |
- not point.config in CONFIGS_TO_INCLUDE): |
+ not point.config in CONFIGS_TO_INCLUDE or |
+ point.bench in SKPS_TO_EXCLUDE): |
continue |
key = (point.config, point.bench) |
if key in bench_dict: |