]> git.proxmox.com Git - mirror_qemu.git/blame - tests/qapi-schema/returns-whitelist.json
qapi: Back out doc comments added just to please qapi.py
[mirror_qemu.git] / tests / qapi-schema / returns-whitelist.json
CommitLineData
10d4d997 1# we enforce that 'returns' be a dict or array of dict unless whitelisted
0d8b9fb5
EB
2{ 'command': 'human-monitor-command',
3 'data': {'command-line': 'str', '*cpu-index': 'int'},
4 'returns': 'str' }
5{ 'enum': 'TpmModel', 'data': [ 'tpm-tis' ] }
6{ 'command': 'query-tpm-models', 'returns': ['TpmModel'] }
7{ 'command': 'guest-get-time',
8 'returns': 'int' }
9
10{ 'command': 'no-way-this-will-get-whitelisted',
11 'returns': [ 'int' ] }