]> git.proxmox.com Git - mirror_qemu.git/blob - 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
1 # we enforce that 'returns' be a dict or array of dict unless whitelisted
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' ] }