Document use of CC and CFLAGS in more detail (bug 20980, bug 21234).
[glibc.git] / benchtests / scripts / benchout.schema.json
blob0eca21b6bd1d7fe7eeef388fbfc3831eeb0a8cec
2   "title": "benchmark",
3   "type": "object",
4   "properties": {
5     "timing_type": {
6       "type": "string"
7     },
8     "functions": {
9       "title": "Associative array of functions",
10       "type": "object",
11       "patternProperties": {
12         "^[_a-zA-Z][_a-zA-Z0-9]+$": {
13           "title": "Function names",
14           "type": "object",
15           "patternProperties": {
16             "^[_a-zA-Z0-9,=.-]*$": {
17               "title": "Function variants",
18               "type": "object",
19               "properties": {
20                 "duration": {"type": "number"},
21                 "iterations": {"type": "number"},
22                 "throughput": {"type": "number"},
23                 "max": {"type": "number"},
24                 "min": {"type": "number"},
25                 "mean": {"type": "number"},
26                 "timings": {
27                   "type": "array",
28                   "items": {"type": "number"}
29                 }
30               },
31               "required": ["duration", "iterations"],
32               "additionalProperties": false
33             }
34           },
35           "additionalProperties": false
36         }
37       },
38       "minProperties": 1
39     }
40   },
41   "required": ["timing_type", "functions"],
42   "additionalProperties": false