From 0dd45d0adbade7eaae973b09b4d0ff1acb1479b8 Mon Sep 17 00:00:00 2001 From: Richard Eisenberg Date: Tue, 24 Nov 2020 09:06:39 -0500 Subject: Bump the # of commits searched for perf baseline The previous value of 75 meant that a feature branch with more than 75 commits would get spurious CI passes. This affects #18692, but does not fix that ticket, because if a baseline cannot be found, we should fail, not succeed. --- testsuite/driver/perf_notes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testsuite/driver/perf_notes.py') diff --git a/testsuite/driver/perf_notes.py b/testsuite/driver/perf_notes.py index 53b5019dab..eb31f463da 100644 --- a/testsuite/driver/perf_notes.py +++ b/testsuite/driver/perf_notes.py @@ -342,7 +342,7 @@ def append_perf_stat(stats: List[PerfStat], # # Max number of ancestor commits to search when compiling a baseline performance metric. -BaselineSearchDepth = 75 +BaselineSearchDepth = 1000 # (isCalculated, best fit ci test_env or None) BestFitCiTestEnv = (False, None) # type: Tuple[bool, Optional[TestEnv]] -- cgit v1.2.1