tests: fixes aio-win32 about aio_remove_fd_handler, get it consistence with aio-posix.c
[qemu/ar7.git] / tests / qapi-schema / returns-whitelist.json
blobda209329b1ff7788316deb7693c1593ce45ba8a0
1 # we enforce that 'returns' be a dict or array of dict unless whitelisted
3 { 'pragma': { 'returns-whitelist': [
4     'human-monitor-command', 'query-tpm-models', 'guest-get-time' ] } }
6 { 'command': 'human-monitor-command',
7   'data': {'command-line': 'str', '*cpu-index': 'int'},
8   'returns': 'str' }
9 { 'enum': 'TpmModel', 'data': [ 'tpm-tis' ] }
10 { 'command': 'query-tpm-models', 'returns': ['TpmModel'] }
11 { 'command': 'guest-get-time',
12   'returns': 'int' }
14 { 'command': 'no-way-this-will-get-whitelisted',
15   'returns': [ 'int' ] }