[igt-dev] [v4 i-g-t] tests/kms_busy: Limit the execution to two pipes

Modem, Bhanuprakash bhanuprakash.modem at intel.com
Mon Apr 12 08:34:28 UTC 2021


> From: Petri Latvala <petri.latvala at intel.com>
> Sent: Monday, April 12, 2021 12:13 PM
> To: Modem, Bhanuprakash <bhanuprakash.modem at intel.com>
> Cc: igt-dev at lists.freedesktop.org; B S, Karthik <karthik.b.s at intel.com>;
> Kunche, Kishore <kishore.kunche at intel.com>; Shankar, Uma
> <uma.shankar at intel.com>; Joshi, Kunal1 <kunal1.joshi at intel.com>
> Subject: Re: [v4 i-g-t] tests/kms_busy: Limit the execution to two pipes
> 
> On Sat, Mar 27, 2021 at 03:45:24AM +0530, Bhanuprakash Modem wrote:
> > As all pipes are symmetric, restrict the execution to two pipes
> > can save lot of CI time.
> >
> > If we want to execute on all pipes, we need to pass an extra
> > argument "-e" indicates extended.
> >
> > Example: ./build/tests/kms_busy -e --r basic
> >
> > V2, V3:
> > * Fix the typo in args handler (Petri)
> > V4:
> > * Handle clampling cleanly (Petri)
> > * Restore lost test coverage in the previous version (Petri/Bhanu)
> >
> > Cc: Karthik B S <karthik.b.s at intel.com>
> > Cc: Latvala Petri <petri.latvala at intel.com>
> > Cc: Kunche Kishore <kishore.kunche at intel.com>
> > Cc: Uma Shankar <uma.shankar at intel.com>
> > Reviewed-by: Kunal Joshi <kunal1.joshi at intel.com> (V3)
> > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem at intel.com>
> > ---
> >  tests/kms_busy.c | 139 ++++++++++++++++++++++++++++++-----------------
> >  1 file changed, 89 insertions(+), 50 deletions(-)
> >
> > diff --git a/tests/kms_busy.c b/tests/kms_busy.c
> > index df1f8e11a..2354ae1fe 100644
> > --- a/tests/kms_busy.c
> > +++ b/tests/kms_busy.c
> > @@ -30,6 +30,11 @@
> >
> >  IGT_TEST_DESCRIPTION("Basic check of KMS ABI with busy framebuffers.");
> >
> > +/* restricted pipe count */
> > +#define CRTC_RESTRICT_CNT 2
> > +
> > +static bool all_pipes = false;
> > +
> >  static igt_output_t *
> >  set_fb_on_crtc(igt_display_t *dpy, int pipe, struct igt_fb *fb)
> >  {
> > @@ -287,10 +292,41 @@ static void test_pageflip_modeset_hang(igt_display_t
> *dpy, enum pipe pipe)
> >  	igt_remove_fb(dpy->drm_fd, &fb);
> >  }
> >
> > -igt_main
> > +static int opt_handler(int opt, int opt_index, void *data)
> > +{
> > +	switch (opt) {
> > +		case 'e':
> > +			all_pipes = true;
> > +			break;
> > +		default:
> > +			return IGT_OPT_HANDLER_ERROR;
> > +	}
> > +
> > +	return IGT_OPT_HANDLER_SUCCESS;
> > +}
> > +
> > +const char *help_str =
> > +	"  -e \tRun on all pipes. (By default subtests will run on two
> pipes)\n";
> > +
> > +igt_main_args("e", NULL, help_str, opt_handler, NULL)
> >  {
> >  	igt_display_t display = { .drm_fd = -1, .n_pipes = IGT_MAX_PIPES };
> > -	enum pipe n;
> > +
> > +	int crtc_count;
> > +	int i;
> > +	struct {
> > +		const char *name;
> > +		bool modeset;
> > +		bool hang_newfb;
> > +		bool reset;
> > +	} tests[] = {
> > +		{ "extended-pageflip-hang-oldfb", false, false, false },
> > +		{ "extended-pageflip-hang-newfb", false, true, false },
> > +		{ "extended-modeset-hang-oldfb", true, false, false },
> > +		{ "extended-modeset-hang-newfb", true, true, false },
> > +		{ "extended-modeset-hang-oldfb-with-reset", true, false, true },
> > +		{ "extended-modeset-hang-newfb-with-reset", true, true, true },
> > +	};
> >
> >  	igt_fixture {
> >  		int fd = drm_open_driver_master(DRIVER_INTEL);
> > @@ -318,70 +354,73 @@ igt_main
> >  		}
> >  	}
> >
> > -	for_each_pipe_static(n) igt_subtest_group {
> > -		igt_hang_t hang;
> > -
> > +	igt_subtest_with_dynamic("basic") {
> > +		enum pipe pipe;
> > +		igt_output_t *output;
> > +		int count = 0;
> > +		igt_hang_t hang = igt_allow_hang(display.drm_fd, 0, 0);
> >  		errno = 0;
> >
> > -		igt_fixture {
> > -			igt_display_require_output_on_pipe(&display, n);
> > -		}
> > -
> > -		igt_subtest_f("basic-flip-pipe-%s", kmstest_pipe_name(n)) {
> > -			test_flip(&display, n, false);
> > -		}
> > -		igt_subtest_f("basic-modeset-pipe-%s", kmstest_pipe_name(n)) {
> > -
> > -			test_flip(&display, n, true);
> > -		}
> > -
> > -		igt_fixture {
> > -			hang = igt_allow_hang(display.drm_fd, 0, 0);
> > -		}
> > +		crtc_count = (all_pipes)? display.n_pipes : CRTC_RESTRICT_CNT;
> > +		for_each_pipe_with_valid_output(&display, pipe, output) {
> > +			igt_dynamic_f("flip-pipe-%s", kmstest_pipe_name(pipe))
> > +				test_flip(&display, pipe, false);
> > +			igt_dynamic_f("modeset-pipe-%s", kmstest_pipe_name(pipe))
> > +				test_flip(&display, pipe, true);
> 
> You missed my earlier point about the "basic" subtest. The code now
> just executes on _one_ pipe and then breaks out. Don't make it execute
> more, one pipe is enough. 

There were two sets of basic tests:
* Without hang: Dynamic subtests, and runs on single pipe
* With hang: Not dynamic, and runs on all pipes.

This patch leaves "without hang" tests as it is (runs on single pipe),
and convert "with hang" tests to dynamic & restrict 2 pipes.

And, yes we need to fix the subtest name, maybe s/basic/basic-hang/
-       igt_subtest_with_dynamic("basic") {
+       igt_subtest_with_dynamic("basic-hang") {

./build/tests/kms_busy --l
basic
basic-hang
extended-pageflip-modeset-hang-oldfb
extended-pageflip-hang-oldfb
extended-pageflip-hang-newfb
extended-modeset-hang-oldfb
extended-modeset-hang-newfb
extended-modeset-hang-oldfb-with-reset
extended-modeset-hang-newfb-with-reset

-Bhanu

> 
> Not to mention this patch makes the test have two subtest with the
> name "basic"...
> 
> 
> --
> Petri Latvala


More information about the igt-dev mailing list