qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: John Snow <jsnow@redhat.com>
To: Eric Blake <eblake@redhat.com>,
	Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>,
	qemu-block@nongnu.org
Cc: kwolf@redhat.com, den@openvz.org, qemu-devel@nongnu.org,
	mreitz@redhat.com
Subject: Re: [PATCH v6 10/11] iotests: rewrite check into python
Date: Wed, 13 Jan 2021 19:18:32 -0500	[thread overview]
Message-ID: <fbb09fb2-48c9-b86b-3300-4baf85ed33a5@redhat.com> (raw)
In-Reply-To: <50b239fc-8105-2491-09d6-687c5826de23@redhat.com>

On 1/13/21 6:20 PM, Eric Blake wrote:
> On 1/9/21 6:26 AM, Vladimir Sementsov-Ogievskiy wrote:
>> Just use classes introduced in previous three commits. Behavior
>> difference is described in these three commits.
>>
>> Drop group file, as it becomes unused.
>>
>> Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
>> ---
>>   tests/qemu-iotests/check | 994 ++-------------------------------------
>>   tests/qemu-iotests/group | 321 -------------
>>   2 files changed, 28 insertions(+), 1287 deletions(-)
>>   delete mode 100644 tests/qemu-iotests/group
> 
> The bulk of the work was done in the earlier patches, and my python
> review is weak; but I can confirm that with this patch applied, my usual
> attempts at running ./check still appeared to work for me.  That's not
> the same as proving you did 1:1 feature translation (and in fact, your
> commit message documented dropping some features like -v), but if 'make
> check' and CI tools still run, I'm okay leaving it up to developers to
> complain about any other feature that they used but which go missing (or
> to implement it).
> 
> Tested-by: Eric Blake <eblake@redhat.com>
> 

I will *try* to give this a look, but I am still buried under post-PTO 
mail; and I feel comfortable with Kevin's Python review otherwise, so 
don't hold your breath waiting to hear from me.

>>
>> diff --git a/tests/qemu-iotests/check b/tests/qemu-iotests/check
>> index 952762d5ed..48bb3128c3 100755
>> --- a/tests/qemu-iotests/check
>> +++ b/tests/qemu-iotests/check
>> @@ -1,7 +1,8 @@
>> -#!/usr/bin/env bash
>> +#!/usr/bin/env python3
>>   #
>> -# Copyright (C) 2009 Red Hat, Inc.
>> -# Copyright (c) 2000-2002,2006 Silicon Graphics, Inc.  All Rights Reserved.
>> +# Configure environment and run group of tests in it.
>> +#
>> +# Copyright (c) 2020 Virtuozzo International GmbH
> 
> You may want to claim 2021 as well.
> 
>> +import sys
>> +import os
>> +from findtests import find_tests, TestFinder
>> +from testenv import TestEnv
>> +from testrunner import TestRunner
>> +
>> +if __name__ == '__main__':
>> +    if len(sys.argv) == 2 and sys.argv[1] in ['-h', '--help']:
>> +        print('Usage: ./check [options] [testlist]')
>> +        print()
>> +        TestFinder.get_argparser().print_help()
>> +        print()
>> +        TestEnv.get_argparser().print_help()
>> +        print()
>> +        TestRunner.get_argparser().print_help()
>> +        exit()
>> +
>> +    env = TestEnv(sys.argv[1:])
>> +    tests, remaining_argv = find_tests(env.remaining_argv,
>> +                                       test_dir=env.source_iotests)
>> +
>> +    with TestRunner(remaining_argv, env) as tr:
>> +        assert not tr.remaining_argv
>> +        tr.run_tests([os.path.join(env.source_iotests, t) for t in tests])
> 
> A lot shorter for the main engine ;)
> 
>> diff --git a/tests/qemu-iotests/group b/tests/qemu-iotests/group
>> deleted file mode 100644
>> index bc5bc324fe..0000000000
>> --- a/tests/qemu-iotests/group
>> +++ /dev/null
>> @@ -1,321 +0,0 @@
>> -#
>> -# QA groups control file
>> -# Defines test groups
> 
> Happy to see this conflict magnet go!
> 

This rules.

--js



  reply	other threads:[~2021-01-14  0:19 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-09 12:26 [PATCH v6 00/11] Rework iotests/check Vladimir Sementsov-Ogievskiy
2021-01-09 12:26 ` [PATCH v6 01/11] iotests/277: use dot slash for nbd-fault-injector.py running Vladimir Sementsov-Ogievskiy
2021-01-13 22:37   ` Eric Blake
2021-01-09 12:26 ` [PATCH v6 02/11] iotests/303: use dot slash for qcow2.py running Vladimir Sementsov-Ogievskiy
2021-01-13 22:38   ` Eric Blake
2021-01-09 12:26 ` [PATCH v6 03/11] iotests: fix some whitespaces in test output files Vladimir Sementsov-Ogievskiy
2021-01-13 22:51   ` Eric Blake
2021-01-09 12:26 ` [PATCH v6 04/11] iotests: make tests executable Vladimir Sementsov-Ogievskiy
2021-01-13 22:53   ` Eric Blake
2021-01-09 12:26 ` [PATCH v6 05/11] iotests/294: add shebang line Vladimir Sementsov-Ogievskiy
2021-01-13 22:54   ` Eric Blake
2021-01-09 12:26 ` [PATCH v6 06/11] iotests: define group in each iotest Vladimir Sementsov-Ogievskiy
2021-01-13 23:01   ` Eric Blake
2021-01-09 12:26 ` [PATCH v6 07/11] iotests: add findtests.py Vladimir Sementsov-Ogievskiy
2021-01-12 16:42   ` Kevin Wolf
2021-01-13 10:37     ` Vladimir Sementsov-Ogievskiy
2021-01-13 11:18       ` Kevin Wolf
2021-01-14  7:38     ` Vladimir Sementsov-Ogievskiy
2021-01-14 10:48       ` Kevin Wolf
2021-01-13 23:10   ` Eric Blake
2021-01-09 12:26 ` [PATCH v6 08/11] iotests: add testenv.py Vladimir Sementsov-Ogievskiy
2021-01-12 17:36   ` Kevin Wolf
2021-01-14  6:14     ` Vladimir Sementsov-Ogievskiy
2021-01-14  6:16       ` Vladimir Sementsov-Ogievskiy
2021-01-14  4:28   ` Vladimir Sementsov-Ogievskiy
2021-01-14 11:14     ` Kevin Wolf
2021-01-14 11:26       ` Vladimir Sementsov-Ogievskiy
2021-01-15 11:18   ` Kevin Wolf
2021-01-15 12:19     ` Vladimir Sementsov-Ogievskiy
2021-01-15 12:45       ` Kevin Wolf
2021-01-15 13:10         ` Vladimir Sementsov-Ogievskiy
2021-01-15 13:20           ` Kevin Wolf
2021-01-15 13:30             ` Vladimir Sementsov-Ogievskiy
2021-01-16 11:03               ` Vladimir Sementsov-Ogievskiy
2021-01-16 11:19                 ` Vladimir Sementsov-Ogievskiy
2021-01-18  9:59                 ` Kevin Wolf
2021-01-18 17:00                   ` Vladimir Sementsov-Ogievskiy
2021-01-09 12:26 ` [PATCH v6 09/11] iotests: add testrunner.py Vladimir Sementsov-Ogievskiy
2021-01-09 12:26 ` [PATCH v6 10/11] iotests: rewrite check into python Vladimir Sementsov-Ogievskiy
2021-01-12 17:41   ` Kevin Wolf
2021-01-13 23:20   ` Eric Blake
2021-01-14  0:18     ` John Snow [this message]
2021-01-09 12:26 ` [PATCH v6 11/11] iotests: rename and move 169 and 199 tests Vladimir Sementsov-Ogievskiy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=fbb09fb2-48c9-b86b-3300-4baf85ed33a5@redhat.com \
    --to=jsnow@redhat.com \
    --cc=den@openvz.org \
    --cc=eblake@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=mreitz@redhat.com \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=vsementsov@virtuozzo.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).