From: Siddhesh Poyarekar Date: Sat, 11 Aug 2018 13:24:46 +0000 (+0530) Subject: [benchtests] Add workload test properties to schema X-Git-Tag: glibc-2.29~541 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8cac1f263528d6e943554e175f39e03d2a4a3d26;p=thirdparty%2Fglibc.git [benchtests] Add workload test properties to schema Add the workload test properties (max-throughput, latency, etc.) to the schema to prevent benchmark output validation from failing. * benchtests/scripts/benchout.schema.json (properties): Add new properties. --- diff --git a/ChangeLog b/ChangeLog index 9c7bb73ff82..b099b192bad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2018-08-11 Siddhesh Poyarekar + * benchtests/scripts/benchout.schema.json (properties): Add + new properties. + * benchtests/bench-skeleton.c (main): Add duration and iterations attributes. diff --git a/benchtests/scripts/benchout.schema.json b/benchtests/scripts/benchout.schema.json index 0eca21b6bd1..8cfd6064972 100644 --- a/benchtests/scripts/benchout.schema.json +++ b/benchtests/scripts/benchout.schema.json @@ -23,6 +23,10 @@ "max": {"type": "number"}, "min": {"type": "number"}, "mean": {"type": "number"}, + "latency": {"type": "number"}, + "min-throughput": {"type": "number"}, + "max-throughput": {"type": "number"}, + "reciprocal-throughput": {"type": "number"}, "timings": { "type": "array", "items": {"type": "number"}