[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 5/9] iotests: Fix 237 for Python 2.x
From: |
John Snow |
Subject: |
Re: [Qemu-devel] [PATCH 5/9] iotests: Fix 237 for Python 2.x |
Date: |
Tue, 29 Jan 2019 16:21:14 -0500 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.4.0 |
On 1/23/19 9:46 AM, Max Reitz wrote:
> 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.
>
I'd have shuffled this above patch 01 (or immediately below) with a note
in either commit saying that the test is still broken without both patches.
I'd also say what you're actually fixing in the commit
(range wants ints, not floats.)
> Signed-off-by: Max Reitz <address@hidden>
But, like, that's just my opinion, man,,
Reviewed-by: John Snow <address@hidden>
> ---
> tests/qemu-iotests/237 | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/qemu-iotests/237 b/tests/qemu-iotests/237
> index fe0dd0f461..06897f8c87 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()
>
- [Qemu-devel] [PATCH 0/9] iotests: Fix some issues, Max Reitz, 2019/01/23
- [Qemu-devel] [PATCH 1/9] iotests: Re-add filename filters, Max Reitz, 2019/01/23
- [Qemu-devel] [PATCH 2/9] iotests: Remove superfluous rm from 232, Max Reitz, 2019/01/23
- [Qemu-devel] [PATCH 5/9] iotests: Fix 237 for Python 2.x, Max Reitz, 2019/01/23
- Re: [Qemu-devel] [PATCH 5/9] iotests: Fix 237 for Python 2.x,
John Snow <=
- [Qemu-devel] [PATCH 4/9] iotests: Fix 207 to use QMP filters for qmp_log, Max Reitz, 2019/01/23
- [Qemu-devel] [PATCH 3/9] iotests: Fix 232 for LUKS, Max Reitz, 2019/01/23
- [Qemu-devel] [PATCH 6/9] iotests.py: Add is_str(), Max Reitz, 2019/01/23