Add qemu 2.4.0
[kvmfornfv.git] / qemu / 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' ] }