]> Git Repo - qemu.git/blob - tests/qapi-schema/returns-whitelist.json
Merge remote-tracking branch 'mst/tags/for_upstream' into staging
[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' ] }
This page took 0.026006 seconds and 4 git commands to generate.