[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [OSSTEST PATCH v3 01/25] Executive: Previous duration estimator: use overall time, not sum of steps
From: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> Some jobs runs steps in parallel. Do not add up all the individual step durations. Instead, calculate the duration as the time between first step start and last step finish. Signed-off-by: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- Osstest/Executive.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Osstest/Executive.pm b/Osstest/Executive.pm index 7e31b35..7b40307 100644 --- a/Osstest/Executive.pm +++ b/Osstest/Executive.pm @@ -1068,7 +1068,7 @@ END FROM steps WHERE flight=? AND job=? ) - SELECT sum(finished-started) + SELECT max(finished)-min(started) AS duration FROM tsteps WHERE step != 'ts-hosts-allocate' -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |