If we are looking for a particular step then we will ignore jobs without that step, so any job which was truncated before it will be ignored.
Otherwise we are looking for the whole job duration and a truncated job is not a good representative. This is a bugfix (to duration estimation), not a performance improvement like the preceding and subsequent changes. Signed-off-by: Ian Jackson <ian.jack...@eu.citrix.com> --- Osstest/Executive.pm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Osstest/Executive.pm b/Osstest/Executive.pm index c272e9f2..3cd37c14 100644 --- a/Osstest/Executive.pm +++ b/Osstest/Executive.pm @@ -1142,6 +1142,10 @@ sub duration_estimator ($$;$$) { # estimated (and only jobs which contained that step will be # considered). + my $or_status_truncated = ''; + if ($will_uptoincl_testid) { + $or_status_truncated = "OR j.status='truncated'!"; + } my $recentflights_q= $dbh_tests->prepare(<<END); SELECT f.flight AS flight, f.started AS started, @@ -1156,8 +1160,8 @@ sub duration_estimator ($$;$$) { AND f.branch=? AND j.job=? AND r.val=? - AND (j.status='pass' OR j.status='fail' OR - j.status='truncated') + AND (j.status='pass' OR j.status='fail' + $or_status_truncated) AND f.started IS NOT NULL AND f.started >= ? ORDER BY f.started DESC -- 2.20.1