summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFam Zheng <famz@redhat.com>2015-01-04 09:53:52 +0800
committerStefan Hajnoczi <stefanha@redhat.com>2015-01-13 13:43:28 +0000
commitbc521696607c5348fcd8a9e57b408d0ac0dbe2f8 (patch)
tree5123de91471b9f1b3642335cdf34488c8f64ea90
parent9c8ab1ae0d7c4a135c832c784f088ae5e2140585 (diff)
downloadqemu-bc521696607c5348fcd8a9e57b408d0ac0dbe2f8.tar.gz
qemu-bc521696607c5348fcd8a9e57b408d0ac0dbe2f8.tar.bz2
qemu-bc521696607c5348fcd8a9e57b408d0ac0dbe2f8.zip
qemu-iotests: Add supported os parameter for python tests
If I understand correctly, qemu-iotests never meant to be portable. We only support Linux for all the shell cases, but didn't specify it for python tests. Now add this and default all the python tests as Linux only. If we cares enough later, we can override the parameter in individual cases. Signed-off-by: Fam Zheng <famz@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
-rw-r--r--tests/qemu-iotests/iotests.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
index f57f1548ac..87002e0e2c 100644
--- a/tests/qemu-iotests/iotests.py
+++ b/tests/qemu-iotests/iotests.py
@@ -282,12 +282,15 @@ def notrun(reason):
print '%s not run: %s' % (seq, reason)
sys.exit(0)
-def main(supported_fmts=[]):
+def main(supported_fmts=[], supported_oses=['linux']):
'''Run tests'''
if supported_fmts and (imgfmt not in supported_fmts):
notrun('not suitable for this image format: %s' % imgfmt)
+ if sys.platform not in supported_oses:
+ notrun('not suitable for this OS: %s' % sys.platform)
+
# We need to filter out the time taken from the output so that qemu-iotest
# can reliably diff the results against master output.
import StringIO