[igt-dev] [PATCH i-g-t 1/3] lib/igt_aux: Rename igt_debug_manual_check and assert check if all is supplied

Petri Latvala petri.latvala at intel.com
Wed Sep 22 17:12:14 UTC 2021


On Wed, Sep 22, 2021 at 07:45:54PM +0300, B, Jeevan wrote:
> >-----Original Message-----
> >From: Latvala, Petri <petri.latvala at intel.com>
> >Sent: Tuesday, September 21, 2021 6:19 PM
> >To: B, Jeevan <jeevan.b at intel.com>
> >Cc: igt-dev at lists.freedesktop.org; daniel at ffwll.ch; Souza, Jose
> ><jose.souza at intel.com>
> >Subject: Re: [igt-dev] [PATCH i-g-t 1/3] lib/igt_aux: Rename
> >igt_debug_manual_check and assert check if all is supplied
> >
> >On Tue, Sep 21, 2021 at 01:27:47PM +0530, Jeevan B wrote:
> >> rename igt_debug_manual_check and patch the igt functions
> >> igt_debug_manual_check() and igt_debug_wait_for_keypress() to assert
> >> if "all" is supplied.
> >
> >Why?
> 
> Addressing comments given here. (https://lore.kernel.org/intel-gfx/CAKMK7uE0Hd34fOobDZT27MhOYE1qjXdD1Yzn9C0B+u=RCXLi8w@mail.gmail.com/)

The code changes are doing the opposite though, probaly by mistake.

The point was that calling igt_debug_wait_for_keypress() with "all"
should assert. Executing a test with --interactive-debug=all should
not.

-- 
Petri Latvala


> 
> Thanks
> Jeevan B
> >
> >
> >--
> >Petri Latvala
> >
> >
> >>
> >> Signed-off-by: Jeevan B <jeevan.b at intel.com>
> >> ---
> >>  lib/igt_aux.c            | 18 ++++++++++++------
> >>  lib/igt_aux.h            |  2 +-
> >>  tests/i915/kms_dsc.c     |  2 +-
> >>  tests/i915/kms_psr.c     |  2 +-
> >>  tests/i915/kms_psr2_sf.c |  2 +-
> >>  5 files changed, 16 insertions(+), 10 deletions(-)
> >>
> >> diff --git a/lib/igt_aux.c b/lib/igt_aux.c
> >> index 1217f5e8..96929237 100644
> >> --- a/lib/igt_aux.c
> >> +++ b/lib/igt_aux.c
> >> @@ -971,8 +971,7 @@ void igt_drop_root(void)
> >>   *
> >>   * Waits for a key press when run interactively and when the corresponding
> >debug
> >>   * var is set in the --interactive-debug=$var variable. Multiple keys
> >> - * can be specified as a comma-separated list or alternatively "all" if a wait
> >> - * should happen for all cases.
> >> + * can be specified as a comma-separated list and assert if "all" is supplied.
> >>   *
> >>   * When not connected to a terminal interactive_debug is ignored
> >>   * and execution immediately continues.
> >> @@ -993,6 +992,10 @@ void igt_debug_wait_for_keypress(const char *var)
> >>  	if (!igt_interactive_debug)
> >>  		return;
> >>
> >> +	if (strstr(igt_interactive_debug, var) &&
> >> +	    strstr(igt_interactive_debug, "all"))
> >> +		igt_assert(false);
> >> +
> >>  	if (!strstr(igt_interactive_debug, var) &&
> >>  	    !strstr(igt_interactive_debug, "all"))
> >>  		return;
> >> @@ -1008,14 +1011,13 @@ void igt_debug_wait_for_keypress(const char
> >*var)
> >>  }
> >>
> >>  /**
> >> - * igt_debug_manual_check:
> >> + * igt_debug_interactive_mode_check:
> >>   * @var: var lookup to to enable this wait
> >>   * @expected: message to be printed as expected behaviour before wait for
> >keys Y/n
> >>   *
> >>   * Waits for a key press when run interactively and when the corresponding
> >debug
> >>   * var is set in the --interactive-debug=$var variable. Multiple vars
> >> - * can be specified as a comma-separated list or alternatively "all" if a wait
> >> - * should happen for all cases.
> >> + * can be specified as a comma-separated list and assert if "all" is supplied.
> >>   *
> >>   * This is useful for display tests where under certain situation manual
> >>   * inspection of the display is useful. Or when running a testcase in the
> >> @@ -1028,7 +1030,7 @@ void igt_debug_wait_for_keypress(const char *var)
> >>   *
> >>   * Force test fail when N/n is pressed.
> >>   */
> >> -void igt_debug_manual_check(const char *var, const char *expected)
> >> +void igt_debug_interactive_mode_check(const char *var, const char
> >*expected)
> >>  {
> >>  	struct termios oldt, newt;
> >>  	char key;
> >> @@ -1041,6 +1043,10 @@ void igt_debug_manual_check(const char *var,
> >const char *expected)
> >>  	if (!igt_interactive_debug)
> >>  		return;
> >>
> >> +	if (strstr(igt_interactive_debug, var) &&
> >> +	    strstr(igt_interactive_debug, "all"))
> >> +		igt_assert(false);
> >> +
> >>  	if (!strstr(igt_interactive_debug, var) &&
> >>  	    !strstr(igt_interactive_debug, "all"))
> >>  		return;
> >> diff --git a/lib/igt_aux.h b/lib/igt_aux.h
> >> index bf57ccf5..a92eb799 100644
> >> --- a/lib/igt_aux.h
> >> +++ b/lib/igt_aux.h
> >> @@ -193,7 +193,7 @@ int igt_get_autoresume_delay(enum igt_suspend_state
> >state);
> >>  void igt_drop_root(void);
> >>
> >>  void igt_debug_wait_for_keypress(const char *var);
> >> -void igt_debug_manual_check(const char *var, const char *expected);
> >> +void igt_debug_interactive_mode_check(const char *var, const char
> >*expected);
> >>
> >>  /* sysinfo cross-arch wrappers from intel_os.c */
> >>
> >> diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
> >> index 3e450207..772687f4 100644
> >> --- a/tests/i915/kms_dsc.c
> >> +++ b/tests/i915/kms_dsc.c
> >> @@ -72,7 +72,7 @@ int force_dsc_restore_fd = -1;
> >>
> >>  static inline void manual(const char *expected)
> >>  {
> >> -	igt_debug_manual_check("all", expected);
> >> +	igt_debug_interactive_mode_check("all", expected);
> >>  }
> >>
> >>  static void force_dsc_enable(data_t *data)
> >> diff --git a/tests/i915/kms_psr.c b/tests/i915/kms_psr.c
> >> index 270d3150..24a10676 100644
> >> --- a/tests/i915/kms_psr.c
> >> +++ b/tests/i915/kms_psr.c
> >> @@ -246,7 +246,7 @@ static bool psr_enable_if_enabled(data_t *data)
> >>
> >>  static inline void manual(const char *expected)
> >>  {
> >> -	igt_debug_manual_check("all", expected);
> >> +	igt_debug_interactive_mode_check("all", expected);
> >>  }
> >>
> >>  static bool drrs_disabled(data_t *data)
> >> diff --git a/tests/i915/kms_psr2_sf.c b/tests/i915/kms_psr2_sf.c
> >> index 1be8c3da..93347327 100644
> >> --- a/tests/i915/kms_psr2_sf.c
> >> +++ b/tests/i915/kms_psr2_sf.c
> >> @@ -331,7 +331,7 @@ static void prepare(data_t *data)
> >>
> >>  static inline void manual(const char *expected)
> >>  {
> >> -	igt_debug_manual_check("all", expected);
> >> +	igt_debug_interactive_mode_check("all", expected);
> >>  }
> >>
> >>  static void plane_update_expected_output(int plane_type, int box_count)
> >> --
> >> 2.19.1
> >>


More information about the igt-dev mailing list