Adjust name of ld.so in test-container.c.
[glibc.git] / benchtests / scripts / benchout.schema.json
blob8cfd6064972188cf711de1cbbf1bf5a1a8e7a40b
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                 "latency": {"type": "number"},
27                 "min-throughput": {"type": "number"},
28                 "max-throughput": {"type": "number"},
29                 "reciprocal-throughput": {"type": "number"},
30                 "timings": {
31                   "type": "array",
32                   "items": {"type": "number"}
33                 }
34               },
35               "required": ["duration", "iterations"],
36               "additionalProperties": false
37             }
38           },
39           "additionalProperties": false
40         }
41       },
42       "minProperties": 1
43     }
44   },
45   "required": ["timing_type", "functions"],
46   "additionalProperties": false