summaryrefslogtreecommitdiffstats
path: root/qemu/tests/qapi-schema/returns-whitelist.json
diff options
context:
space:
mode:
Diffstat (limited to 'qemu/tests/qapi-schema/returns-whitelist.json')
-rw-r--r--qemu/tests/qapi-schema/returns-whitelist.json11
1 files changed, 0 insertions, 11 deletions
diff --git a/qemu/tests/qapi-schema/returns-whitelist.json b/qemu/tests/qapi-schema/returns-whitelist.json
deleted file mode 100644
index e8b3cea39..000000000
--- a/qemu/tests/qapi-schema/returns-whitelist.json
+++ /dev/null
@@ -1,11 +0,0 @@
-# we enforce that 'returns' be a dict or array of dict unless whitelisted
-{ 'command': 'human-monitor-command',
- 'data': {'command-line': 'str', '*cpu-index': 'int'},
- 'returns': 'str' }
-{ 'enum': 'TpmModel', 'data': [ 'tpm-tis' ] }
-{ 'command': 'query-tpm-models', 'returns': ['TpmModel'] }
-{ 'command': 'guest-get-time',
- 'returns': 'int' }
-
-{ 'command': 'no-way-this-will-get-whitelisted',
- 'returns': [ 'int' ] }