diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | benchtests/scripts/benchout.schema.json | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2017-11-28 Victor Rodriguez <victor.rodriguez.bahena@intel.com> + * benchtests/scripts/benchout.schema.json: Fix regex to accept a wider + range of tests names. + * benchtests/scripts/benchout.schema.json: Add throughput as accepted result from property and remove "max", min" and "mean" from required properties based on benchtests/bench-skeleton.c. diff --git a/benchtests/scripts/benchout.schema.json b/benchtests/scripts/benchout.schema.json index dfc00b1..0eca21b 100644 --- a/benchtests/scripts/benchout.schema.json +++ b/benchtests/scripts/benchout.schema.json @@ -13,7 +13,7 @@ "title": "Function names", "type": "object", "patternProperties": { - "^[_a-zA-Z0-9]*$": { + "^[_a-zA-Z0-9,=.-]*$": { "title": "Function variants", "type": "object", "properties": { |