mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
tools: ynl: don't append doc of missing type directly to the type
When using YNL in tests appending the doc string to the type name makes it harder to check that we got the correct error. Put the doc under a separate key. Reviewed-by: Donald Hunter <donald.hunter@gmail.com> Link: https://lore.kernel.org/r/20240426003111.359285-1-kuba@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
ff9ddaa416
commit
5c4c0edca6
1 changed files with 2 additions and 3 deletions
|
@ -233,10 +233,9 @@ class NlMsg:
|
|||
miss_type = self.extack['miss-type']
|
||||
if miss_type in attr_space.attrs_by_val:
|
||||
spec = attr_space.attrs_by_val[miss_type]
|
||||
desc = spec['name']
|
||||
self.extack['miss-type'] = spec['name']
|
||||
if 'doc' in spec:
|
||||
desc += f" ({spec['doc']})"
|
||||
self.extack['miss-type'] = desc
|
||||
self.extack['miss-type-doc'] = spec['doc']
|
||||
|
||||
def _decode_policy(self, raw):
|
||||
policy = {}
|
||||
|
|
Loading…
Add table
Reference in a new issue