mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
benchtests: make compare_strings.py accept string as attribute value
Commit ac759b1fbf
added attribute
"overlap" to bench-memmove-walk, whose value is a string. This change
makes compare_strings.py fail since benchout_strings.schema.json
requires the values of attributes to be number.
This patch relaxes such constraint.
Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
This commit is contained in:
parent
6de743a4e3
commit
edddffc9df
@ -28,7 +28,12 @@
|
||||
"items": {"type": "number"}
|
||||
}
|
||||
},
|
||||
"additionalProperties": {"type": "number"},
|
||||
"additionalProperties": {
|
||||
"oneOf": [
|
||||
{ "type": "number" },
|
||||
{ "type": "string" }
|
||||
]
|
||||
},
|
||||
"minProperties": 2
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user