On Fri, Mar 4, 2022 at 3:23 PM Eric Blake <ebl...@redhat.com> wrote: > > On Fri, Mar 04, 2022 at 02:47:44PM -0500, John Snow wrote: > > qemu_img() returning zero ought to be the rule, not the > > exception. Remove all explicit checks against the condition in > > preparation for making non-zero returns an Exception. > > > > Signed-off-by: John Snow <js...@redhat.com> > > --- > > > +++ b/tests/qemu-iotests/310 > > > @@ -105,8 +105,8 @@ with iotests.FilePath('base.img') as base_img_path, \ > > log('') > > > > # Detach backing to check that we can read the data from the top level > > now > > - assert qemu_img('rebase', '-u', '-b', '', '-f', iotests.imgfmt, > > - top_img_path) == 0 > > + qemu_img('rebase', '-u', '-b', '', '-f', iotests.imgfmt, > > + top_img_path) > > You collapsed other wrapped lines into one where they fit, why not > this one? But it's not essential. >
jsnow is non-deterministic. (I can smoosh this in, or kwolf/hreitz can smoosh it in. Probably not worth a respin, tho.) > Reviewed-by: Eric Blake <ebl...@redhat.com> --js