diff options
author | Max Reitz <mreitz@redhat.com> | 2019-02-10 15:57:28 +0100 |
---|---|---|
committer | Max Reitz <mreitz@redhat.com> | 2019-02-25 15:11:27 +0100 |
commit | 10ba68d10ca820435028c9657cca59ef97ca402e (patch) | |
tree | 272a8f8a35d6a225591df230ee7ed9f986118359 /tests/qemu-iotests/237 | |
parent | 250c04f554a4a148eb3772af255e6a60450293b0 (diff) | |
download | qemu-10ba68d10ca820435028c9657cca59ef97ca402e.zip qemu-10ba68d10ca820435028c9657cca59ef97ca402e.tar.gz qemu-10ba68d10ca820435028c9657cca59ef97ca402e.tar.bz2 |
iotests: Fix 237 for Python 2.x
math.ceil() returns an integer on Python 3.x, but a float on Python 2.x.
range() always needs integers, so we need an explicit conversion on 2.x
(which does not hurt on 3.x).
It is not quite clear whether we want to support Python 2.x for any
prolonged time, but this may as well be fixed along with the other
issues some iotests have right now.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20190210145736.1486-3-mreitz@redhat.com
Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/237')
-rwxr-xr-x | tests/qemu-iotests/237 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/237 b/tests/qemu-iotests/237 index fe0dd0f..06897f8 100755 --- a/tests/qemu-iotests/237 +++ b/tests/qemu-iotests/237 @@ -224,7 +224,7 @@ with iotests.FilePath('t.vmdk') as disk_path, \ iotests.log("= %s %d =" % (subfmt, size)) iotests.log("") - num_extents = math.ceil(size / 2.0**31) + num_extents = int(math.ceil(size / 2.0**31)) extents = [ "ext%d" % (i) for i in range(1, num_extents + 1) ] vm.launch() |