All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/i915_module_load: Add the "load" test
@ 2022-05-25 14:21 Ryszard Knop
  2022-05-25 14:29 ` Petri Latvala
  2022-05-25 19:02 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
  0 siblings, 2 replies; 5+ messages in thread
From: Ryszard Knop @ 2022-05-25 14:21 UTC (permalink / raw)
  To: Development mailing list for IGT GPU Tools

Add a fake test that:
- Asserts i915 and associated drivers are not yet loaded;
- Loads the i915 driver if that's not the case yet;
- Performs a small set of sanity tests to make sure the GPU is there.

The reload test now also performs the same checks.

Signed-off-by: Ryszard Knop <ryszard.knop@intel.com>
---
 tests/i915/i915_module_load.c | 52 +++++++++++++++++++++++++++++------
 1 file changed, 43 insertions(+), 9 deletions(-)

diff --git a/tests/i915/i915_module_load.c b/tests/i915/i915_module_load.c
index f5f98acc..46608aa8 100644
--- a/tests/i915/i915_module_load.c
+++ b/tests/i915/i915_module_load.c
@@ -30,6 +30,7 @@
 #include <sys/ioctl.h>
 #include <fcntl.h>
 
+#include "i915/gem.h"
 #include "i915/gem_create.h"
 #include "igt_debugfs.h"
 #include "igt_aux.h"
@@ -236,21 +237,54 @@ hda_dynamic_debug(bool enable)
 	fclose(fp);
 }
 
+static void load_and_check_i915(void)
+{
+	int error;
+	int drm_fd;
+
+	hda_dynamic_debug(true);
+	error = igt_i915_driver_load(NULL);
+	hda_dynamic_debug(false);
+
+	igt_assert_eq(error, 0);
+
+	/* driver is ready, check if it's bound */
+	drm_fd = __drm_open_driver(DRIVER_INTEL);
+	igt_fail_on_f(drm_fd < 0, "Cannot open the i915 DRM driver after modprobing i915.\n");
+
+	/* make sure the GPU is idle */
+	gem_quiescent_gpu(drm_fd);
+	close(drm_fd);
+
+	/* make sure we can do basic memory ops */
+	gem_sanitycheck();
+}
+
 igt_main
 {
+	igt_describe("Assert that i915 and friends are not yet loaded, then load them.");
+	igt_subtest("load") {
+		const char * unwanted_drivers[] = {
+			"i915",
+			"intel-gtt",
+			"snd_hda_intel",
+			"snd_hdmi_lpe_audio",
+			NULL
+		};
+
+		for (int i = 0; unwanted_drivers[i] != NULL; i++) {
+			igt_abort_on_f(igt_kmod_is_loaded(unwanted_drivers[i]),
+			               "%s is already loaded!\n", unwanted_drivers[i]);
+		}
+
+		load_and_check_i915();
+	}
+
 	igt_describe("Verify the basic functionality of i915 driver after it's reloaded.");
 	igt_subtest("reload") {
-		int load_error;
-
 		igt_i915_driver_unload();
 
-		hda_dynamic_debug(true);
-		load_error = igt_i915_driver_load(NULL);
-		hda_dynamic_debug(false);
-
-		igt_assert_eq(load_error, 0);
-
-		gem_sanitycheck();
+		load_and_check_i915();
 
 		/* only default modparams, can leave module loaded */
 	}
-- 
2.36.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [igt-dev] [PATCH i-g-t] tests/i915_module_load: Add the "load" test
  2022-05-25 14:21 [igt-dev] [PATCH i-g-t] tests/i915_module_load: Add the "load" test Ryszard Knop
@ 2022-05-25 14:29 ` Petri Latvala
  2022-05-25 14:40   ` Knop, Ryszard
  2022-05-25 19:02 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
  1 sibling, 1 reply; 5+ messages in thread
From: Petri Latvala @ 2022-05-25 14:29 UTC (permalink / raw)
  To: Ryszard Knop; +Cc: Development mailing list for IGT GPU Tools

On Wed, May 25, 2022 at 04:21:34PM +0200, Ryszard Knop wrote:
> Add a fake test that:
> - Asserts i915 and associated drivers are not yet loaded;
> - Loads the i915 driver if that's not the case yet;
> - Performs a small set of sanity tests to make sure the GPU is there.
> 
> The reload test now also performs the same checks.
> 
> Signed-off-by: Ryszard Knop <ryszard.knop@intel.com>
> ---
>  tests/i915/i915_module_load.c | 52 +++++++++++++++++++++++++++++------
>  1 file changed, 43 insertions(+), 9 deletions(-)
> 
> diff --git a/tests/i915/i915_module_load.c b/tests/i915/i915_module_load.c
> index f5f98acc..46608aa8 100644
> --- a/tests/i915/i915_module_load.c
> +++ b/tests/i915/i915_module_load.c
> @@ -30,6 +30,7 @@
>  #include <sys/ioctl.h>
>  #include <fcntl.h>
>  
> +#include "i915/gem.h"
>  #include "i915/gem_create.h"
>  #include "igt_debugfs.h"
>  #include "igt_aux.h"
> @@ -236,21 +237,54 @@ hda_dynamic_debug(bool enable)
>  	fclose(fp);
>  }
>  
> +static void load_and_check_i915(void)
> +{
> +	int error;
> +	int drm_fd;
> +
> +	hda_dynamic_debug(true);
> +	error = igt_i915_driver_load(NULL);
> +	hda_dynamic_debug(false);
> +
> +	igt_assert_eq(error, 0);
> +
> +	/* driver is ready, check if it's bound */
> +	drm_fd = __drm_open_driver(DRIVER_INTEL);
> +	igt_fail_on_f(drm_fd < 0, "Cannot open the i915 DRM driver after modprobing i915.\n");
> +
> +	/* make sure the GPU is idle */
> +	gem_quiescent_gpu(drm_fd);
> +	close(drm_fd);
> +
> +	/* make sure we can do basic memory ops */
> +	gem_sanitycheck();
> +}
> +
>  igt_main
>  {
> +	igt_describe("Assert that i915 and friends are not yet loaded, then load them.");
> +	igt_subtest("load") {
> +		const char * unwanted_drivers[] = {
> +			"i915",
> +			"intel-gtt",
> +			"snd_hda_intel",
> +			"snd_hdmi_lpe_audio",
> +			NULL
> +		};
> +
> +		for (int i = 0; unwanted_drivers[i] != NULL; i++) {
> +			igt_abort_on_f(igt_kmod_is_loaded(unwanted_drivers[i]),
> +			               "%s is already loaded!\n", unwanted_drivers[i]);
> +		}

Don't abort here, a skip is enough.

-- 
Petri Latvala


> +
> +		load_and_check_i915();
> +	}
> +
>  	igt_describe("Verify the basic functionality of i915 driver after it's reloaded.");
>  	igt_subtest("reload") {
> -		int load_error;
> -
>  		igt_i915_driver_unload();
>  
> -		hda_dynamic_debug(true);
> -		load_error = igt_i915_driver_load(NULL);
> -		hda_dynamic_debug(false);
> -
> -		igt_assert_eq(load_error, 0);
> -
> -		gem_sanitycheck();
> +		load_and_check_i915();
>  
>  		/* only default modparams, can leave module loaded */
>  	}
> -- 
> 2.36.1
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [igt-dev] [PATCH i-g-t] tests/i915_module_load: Add the "load" test
  2022-05-25 14:29 ` Petri Latvala
@ 2022-05-25 14:40   ` Knop, Ryszard
  2022-05-25 15:09     ` Petri Latvala
  0 siblings, 1 reply; 5+ messages in thread
From: Knop, Ryszard @ 2022-05-25 14:40 UTC (permalink / raw)
  To: Latvala, Petri; +Cc: igt-dev

On Wed, 2022-05-25 at 17:29 +0300, Petri Latvala wrote:
> On Wed, May 25, 2022 at 04:21:34PM +0200, Ryszard Knop wrote:
> > Add a fake test that:
> > - Asserts i915 and associated drivers are not yet loaded;
> > - Loads the i915 driver if that's not the case yet;
> > - Performs a small set of sanity tests to make sure the GPU is
> > there.
> > 
> > The reload test now also performs the same checks.
> > 
> > Signed-off-by: Ryszard Knop <ryszard.knop@intel.com>
> > ---
> >  tests/i915/i915_module_load.c | 52 +++++++++++++++++++++++++++++--
> > ----
> >  1 file changed, 43 insertions(+), 9 deletions(-)
> > 
> > diff --git a/tests/i915/i915_module_load.c
> > b/tests/i915/i915_module_load.c
> > index f5f98acc..46608aa8 100644
> > --- a/tests/i915/i915_module_load.c
> > +++ b/tests/i915/i915_module_load.c
> > @@ -30,6 +30,7 @@
> >  #include <sys/ioctl.h>
> >  #include <fcntl.h>
> >  
> > +#include "i915/gem.h"
> >  #include "i915/gem_create.h"
> >  #include "igt_debugfs.h"
> >  #include "igt_aux.h"
> > @@ -236,21 +237,54 @@ hda_dynamic_debug(bool enable)
> >         fclose(fp);
> >  }
> >  
> > +static void load_and_check_i915(void)
> > +{
> > +       int error;
> > +       int drm_fd;
> > +
> > +       hda_dynamic_debug(true);
> > +       error = igt_i915_driver_load(NULL);
> > +       hda_dynamic_debug(false);
> > +
> > +       igt_assert_eq(error, 0);
> > +
> > +       /* driver is ready, check if it's bound */
> > +       drm_fd = __drm_open_driver(DRIVER_INTEL);
> > +       igt_fail_on_f(drm_fd < 0, "Cannot open the i915 DRM driver
> > after modprobing i915.\n");
> > +
> > +       /* make sure the GPU is idle */
> > +       gem_quiescent_gpu(drm_fd);
> > +       close(drm_fd);
> > +
> > +       /* make sure we can do basic memory ops */
> > +       gem_sanitycheck();
> > +}
> > +
> >  igt_main
> >  {
> > +       igt_describe("Assert that i915 and friends are not yet
> > loaded, then load them.");
> > +       igt_subtest("load") {
> > +               const char * unwanted_drivers[] = {
> > +                       "i915",
> > +                       "intel-gtt",
> > +                       "snd_hda_intel",
> > +                       "snd_hdmi_lpe_audio",
> > +                       NULL
> > +               };
> > +
> > +               for (int i = 0; unwanted_drivers[i] != NULL; i++) {
> > +                       igt_abort_on_f(igt_kmod_is_loaded(unwanted_
> > drivers[i]),
> > +                                      "%s is already loaded!\n",
> > unwanted_drivers[i]);
> > +               }
> 
> Don't abort here, a skip is enough.

Tomi mentioned he would prefer this to be a hard failure if the module
is already loaded - @reload test does not fail if it's loaded already.
Should I swap it to a skip anyways?

Thanks, Ryszard

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [igt-dev] [PATCH i-g-t] tests/i915_module_load: Add the "load" test
  2022-05-25 14:40   ` Knop, Ryszard
@ 2022-05-25 15:09     ` Petri Latvala
  0 siblings, 0 replies; 5+ messages in thread
From: Petri Latvala @ 2022-05-25 15:09 UTC (permalink / raw)
  To: Knop, Ryszard; +Cc: igt-dev

On Wed, May 25, 2022 at 05:40:52PM +0300, Knop, Ryszard wrote:
> On Wed, 2022-05-25 at 17:29 +0300, Petri Latvala wrote:
> > On Wed, May 25, 2022 at 04:21:34PM +0200, Ryszard Knop wrote:
> > > Add a fake test that:
> > > - Asserts i915 and associated drivers are not yet loaded;
> > > - Loads the i915 driver if that's not the case yet;
> > > - Performs a small set of sanity tests to make sure the GPU is
> > > there.
> > >
> > > The reload test now also performs the same checks.
> > >
> > > Signed-off-by: Ryszard Knop <ryszard.knop@intel.com>
> > > ---
> > >  tests/i915/i915_module_load.c | 52 +++++++++++++++++++++++++++++--
> > > ----
> > >  1 file changed, 43 insertions(+), 9 deletions(-)
> > >
> > > diff --git a/tests/i915/i915_module_load.c
> > > b/tests/i915/i915_module_load.c
> > > index f5f98acc..46608aa8 100644
> > > --- a/tests/i915/i915_module_load.c
> > > +++ b/tests/i915/i915_module_load.c
> > > @@ -30,6 +30,7 @@
> > >  #include <sys/ioctl.h>
> > >  #include <fcntl.h>
> > >
> > > +#include "i915/gem.h"
> > >  #include "i915/gem_create.h"
> > >  #include "igt_debugfs.h"
> > >  #include "igt_aux.h"
> > > @@ -236,21 +237,54 @@ hda_dynamic_debug(bool enable)
> > >         fclose(fp);
> > >  }
> > >
> > > +static void load_and_check_i915(void)
> > > +{
> > > +       int error;
> > > +       int drm_fd;
> > > +
> > > +       hda_dynamic_debug(true);
> > > +       error = igt_i915_driver_load(NULL);
> > > +       hda_dynamic_debug(false);
> > > +
> > > +       igt_assert_eq(error, 0);
> > > +
> > > +       /* driver is ready, check if it's bound */
> > > +       drm_fd = __drm_open_driver(DRIVER_INTEL);
> > > +       igt_fail_on_f(drm_fd < 0, "Cannot open the i915 DRM driver
> > > after modprobing i915.\n");
> > > +
> > > +       /* make sure the GPU is idle */
> > > +       gem_quiescent_gpu(drm_fd);
> > > +       close(drm_fd);
> > > +
> > > +       /* make sure we can do basic memory ops */
> > > +       gem_sanitycheck();
> > > +}
> > > +
> > >  igt_main
> > >  {
> > > +       igt_describe("Assert that i915 and friends are not yet
> > > loaded, then load them.");
> > > +       igt_subtest("load") {
> > > +               const char * unwanted_drivers[] = {
> > > +                       "i915",
> > > +                       "intel-gtt",
> > > +                       "snd_hda_intel",
> > > +                       "snd_hdmi_lpe_audio",
> > > +                       NULL
> > > +               };
> > > +
> > > +               for (int i = 0; unwanted_drivers[i] != NULL; i++) {
> > > +                       igt_abort_on_f(igt_kmod_is_loaded(unwanted_
> > > drivers[i]),
> > > +                                      "%s is already loaded!\n",
> > > unwanted_drivers[i]);
> > > +               }
> >
> > Don't abort here, a skip is enough.
> 
> Tomi mentioned he would prefer this to be a hard failure if the module
> is already loaded - @reload test does not fail if it's loaded already.
> Should I swap it to a skip anyways?


For the record, discussed offline: Skip is the correct result for this
if i915 is already loaded.


-- 
Petri Latvala

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [igt-dev] ✗ Fi.CI.BAT: failure for tests/i915_module_load: Add the "load" test
  2022-05-25 14:21 [igt-dev] [PATCH i-g-t] tests/i915_module_load: Add the "load" test Ryszard Knop
  2022-05-25 14:29 ` Petri Latvala
@ 2022-05-25 19:02 ` Patchwork
  1 sibling, 0 replies; 5+ messages in thread
From: Patchwork @ 2022-05-25 19:02 UTC (permalink / raw)
  To: Ryszard Knop; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 10023 bytes --]

== Series Details ==

Series: tests/i915_module_load: Add the "load" test
URL   : https://patchwork.freedesktop.org/series/104358/
State : failure

== Summary ==

CI Bug Log - changes from IGT_6492 -> IGTPW_7169
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_7169 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_7169, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/index.html

Participating hosts (44 -> 47)
------------------------------

  Additional (3): fi-kbl-soraka bat-jsl-2 fi-icl-u2 

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_7169:

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@workarounds:
    - fi-bdw-5557u:       [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6492/fi-bdw-5557u/igt@i915_selftest@live@workarounds.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-bdw-5557u/igt@i915_selftest@live@workarounds.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@i915_module_load@reload:
    - {bat-dg2-9}:        [FAIL][3] ([i915#5181]) -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6492/bat-dg2-9/igt@i915_module_load@reload.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/bat-dg2-9/igt@i915_module_load@reload.html

  
Known issues
------------

  Here are the changes found in IGTPW_7169 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_fence@basic-busy@bcs0:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][5] ([fdo#109271]) +9 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html

  * igt@gem_huc_copy@huc-copy:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#2190])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
    - fi-icl-u2:          NOTRUN -> [SKIP][7] ([i915#2190])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-icl-u2/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@basic:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#4613]) +3 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - fi-icl-u2:          NOTRUN -> [SKIP][9] ([i915#4613]) +3 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-icl-u2/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@i915_selftest@live@gt_pm:
    - fi-kbl-soraka:      NOTRUN -> [DMESG-FAIL][10] ([i915#1886])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html

  * igt@i915_selftest@live@hangcheck:
    - fi-icl-u2:          NOTRUN -> [INCOMPLETE][11] ([i915#4890])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-icl-u2/igt@i915_selftest@live@hangcheck.html
    - fi-hsw-g3258:       [PASS][12] -> [INCOMPLETE][13] ([i915#3303] / [i915#4785])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6492/fi-hsw-g3258/igt@i915_selftest@live@hangcheck.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-hsw-g3258/igt@i915_selftest@live@hangcheck.html
    - bat-dg1-6:          [PASS][14] -> [DMESG-FAIL][15] ([i915#4494] / [i915#4957])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6492/bat-dg1-6/igt@i915_selftest@live@hangcheck.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/bat-dg1-6/igt@i915_selftest@live@hangcheck.html

  * igt@i915_selftest@live@requests:
    - fi-blb-e6850:       [PASS][16] -> [DMESG-FAIL][17] ([i915#4528])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6492/fi-blb-e6850/igt@i915_selftest@live@requests.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-blb-e6850/igt@i915_selftest@live@requests.html

  * igt@kms_busy@basic@modeset:
    - bat-adlp-4:         [PASS][18] -> [DMESG-WARN][19] ([i915#3576])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6492/bat-adlp-4/igt@kms_busy@basic@modeset.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/bat-adlp-4/igt@kms_busy@basic@modeset.html

  * igt@kms_chamelium@dp-edid-read:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][20] ([fdo#109271] / [fdo#111827]) +7 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-kbl-soraka/igt@kms_chamelium@dp-edid-read.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-icl-u2:          NOTRUN -> [SKIP][21] ([fdo#111827]) +7 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - fi-icl-u2:          NOTRUN -> [SKIP][22] ([fdo#109278]) +2 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_flip@basic-flip-vs-dpms@a-edp1:
    - fi-tgl-u2:          [PASS][23] -> [DMESG-WARN][24] ([i915#402])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6492/fi-tgl-u2/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-tgl-u2/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html

  * igt@kms_force_connector_basic@force-load-detect:
    - fi-icl-u2:          NOTRUN -> [SKIP][25] ([fdo#109285])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-icl-u2/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#533])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-kbl-soraka/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - fi-icl-u2:          NOTRUN -> [SKIP][27] ([i915#3555])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-icl-u2/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@prime_vgem@basic-userptr:
    - fi-icl-u2:          NOTRUN -> [SKIP][28] ([fdo#109295] / [i915#3301])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-icl-u2/igt@prime_vgem@basic-userptr.html

  * igt@runner@aborted:
    - fi-icl-u2:          NOTRUN -> [FAIL][29] ([i915#4312])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-icl-u2/igt@runner@aborted.html
    - fi-hsw-g3258:       NOTRUN -> [FAIL][30] ([fdo#109271] / [i915#4312])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-hsw-g3258/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@hugepages:
    - {bat-adln-1}:       [DMESG-WARN][31] -> [PASS][32]
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6492/bat-adln-1/igt@i915_selftest@live@hugepages.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/bat-adln-1/igt@i915_selftest@live@hugepages.html

  * igt@kms_flip@basic-flip-vs-modeset@a-edp1:
    - fi-tgl-u2:          [DMESG-WARN][33] ([i915#402]) -> [PASS][34]
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6492/fi-tgl-u2/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/fi-tgl-u2/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
  [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494
  [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785
  [i915#4890]: https://gitlab.freedesktop.org/drm/intel/issues/4890
  [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957
  [i915#5181]: https://gitlab.freedesktop.org/drm/intel/issues/5181
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_6492 -> IGTPW_7169

  CI-20190529: 20190529
  CI_DRM_11698: d090dab3ebbe5dff2730aaebe189fa07e9c20e15 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_7169: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/index.html
  IGT_6492: ef18e59c374472e961a3a145724e7381eb4800aa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

+igt@i915_module_load@load

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7169/index.html

[-- Attachment #2: Type: text/html, Size: 11769 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-05-25 19:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-25 14:21 [igt-dev] [PATCH i-g-t] tests/i915_module_load: Add the "load" test Ryszard Knop
2022-05-25 14:29 ` Petri Latvala
2022-05-25 14:40   ` Knop, Ryszard
2022-05-25 15:09     ` Petri Latvala
2022-05-25 19:02 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.