From 20cffa6b2251167e428a641d18a49958044fe598 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Wed, 12 Apr 2017 13:12:34 +0200 Subject: [PATCH] BUG-7783: increase precision of execution times Document the time units we are using for measuring execution and make sure they can hold any long. Change-Id: I859349e27604c75d426ad7c4eec9d6870b081291 Signed-off-by: Robert Varga --- benchmark/api/src/main/yang/dsbenchmark.yang | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/benchmark/api/src/main/yang/dsbenchmark.yang b/benchmark/api/src/main/yang/dsbenchmark.yang index fc0c1bd8d1..f8394e8ae9 100644 --- a/benchmark/api/src/main/yang/dsbenchmark.yang +++ b/benchmark/api/src/main/yang/dsbenchmark.yang @@ -184,12 +184,14 @@ module dsbenchmark { "Indicates whether the test finished successfuly"; } leaf listBuildTime { - type uint32; + type int64; + units microseconds; description "The time it took to build the list of lists"; } leaf execTime { - type uint32; + type int64; + units microseconds; description "The time it took to execute all transactions"; } -- 2.36.6