All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH V4] [PATCH i-g-t][V4] tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines.
@ 2020-02-18  7:09 satyavat
  2020-02-18 16:38 ` [igt-dev] ✗ GitLab.Pipeline: failure for tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines. (rev4) Patchwork
  2020-02-18 17:17 ` [igt-dev] ✗ Fi.CI.BAT: " Patchwork
  0 siblings, 2 replies; 5+ messages in thread
From: satyavat @ 2020-02-18  7:09 UTC (permalink / raw)
  To: satyavathi.k, igt-dev

Replaced the legacy for_each_engine* defines with the ones implemented
in the gem_engine_topology library.

subtest that is modified: Ringfill

V2
Added "Test" name in dynamic subtest to avoid
"-" during subtest list.

corrected DRM open call .

V3
Removed "-" from mode array
removed Test name in dynamic subtest

V4
corrected fd handle in igt_fork

Cc: Dec Katarzyna <katarzyna.dec@intel.com>
Cc: Ursulin Tvrtko <tvrtko.ursulin@intel.com>
Signed-off-by: satyavat <satyavathi.k@intel.com>
---
 tests/i915/gem_ringfill.c | 60 +++++++++++++++++++--------------------
 1 file changed, 29 insertions(+), 31 deletions(-)

diff --git a/tests/i915/gem_ringfill.c b/tests/i915/gem_ringfill.c
index 4c73f4d9..a2ae21e0 100644
--- a/tests/i915/gem_ringfill.c
+++ b/tests/i915/gem_ringfill.c
@@ -96,7 +96,7 @@ static int setup_execbuf(int fd,
 			 struct drm_i915_gem_execbuffer2 *execbuf,
 			 struct drm_i915_gem_exec_object2 *obj,
 			 struct drm_i915_gem_relocation_entry *reloc,
-			 unsigned int ring)
+			 const struct intel_execution_engine2 *e)
 {
 	const int gen = intel_gen(intel_get_drm_devid(fd));
 	const uint32_t bbe = MI_BATCH_BUFFER_END;
@@ -109,7 +109,7 @@ static int setup_execbuf(int fd,
 	memset(reloc, 0, 1024*sizeof(*reloc));
 
 	execbuf->buffers_ptr = to_user_pointer(obj);
-	execbuf->flags = ring | (1 << 11) | (1 << 12);
+	execbuf->flags = e->flags | (1 << 11) | (1 << 12);
 
 	if (gen > 3 && gen < 6)
 		execbuf->flags |= I915_EXEC_SECURE;
@@ -170,25 +170,25 @@ static int setup_execbuf(int fd,
 	return 0;
 }
 
-static void run_test(int fd, unsigned ring, unsigned flags, unsigned timeout)
+static void run_test(int fd, const struct intel_execution_engine2 *e, unsigned flags, unsigned timeout)
 {
+	int i915;
 	struct drm_i915_gem_exec_object2 obj[2];
 	struct drm_i915_gem_relocation_entry reloc[1024];
 	struct drm_i915_gem_execbuffer2 execbuf;
 	igt_hang_t hang;
 
-	gem_require_ring(fd, ring);
-	igt_require(gem_can_store_dword(fd, ring));
+	igt_require(gem_class_can_store_dword(fd, e->class));
 
 	if (flags & (SUSPEND | HIBERNATE))
-		run_test(fd, ring, 0, 0);
+		run_test(fd, e, 0, 0);
 
 	gem_quiescent_gpu(fd);
-	igt_require(setup_execbuf(fd, &execbuf, obj, reloc, ring) == 0);
+	igt_require(setup_execbuf(fd, &execbuf, obj, reloc, e) == 0);
 
 	memset(&hang, 0, sizeof(hang));
 	if (flags & HANG)
-		hang = igt_hang_ring(fd, ring & ~(3<<13));
+		hang = igt_hang_ring(fd, e->flags & ~(3<<13));
 
 	if (flags & (CHILD | FORKED | BOMB)) {
 		int nchild;
@@ -203,8 +203,9 @@ static void run_test(int fd, unsigned ring, unsigned flags, unsigned timeout)
 		igt_debug("Forking %d children\n", nchild);
 		igt_fork(child, nchild) {
 			if (flags & NEWFD) {
-				fd = drm_open_driver(DRIVER_INTEL);
-				setup_execbuf(fd, &execbuf, obj, reloc, ring);
+				i915 = drm_open_driver(DRIVER_INTEL);
+				gem_context_copy_engines(fd, 0, i915, 0);
+				setup_execbuf(i915, &execbuf, obj, reloc, e);
 			}
 			fill_ring(fd, &execbuf, flags, timeout);
 		}
@@ -235,11 +236,12 @@ static void run_test(int fd, unsigned ring, unsigned flags, unsigned timeout)
 	gem_quiescent_gpu(fd);
 
 	if (flags & (SUSPEND | HIBERNATE))
-		run_test(fd, ring, 0, 0);
+		run_test(fd, e, 0, 0);
 }
 
 igt_main
 {
+	const struct intel_execution_engine2 *e;
 	const struct {
 		const char *suffix;
 		unsigned flags;
@@ -247,14 +249,14 @@ igt_main
 		bool basic;
 	} modes[] = {
 		{ "", 0, 0, true},
-		{ "-interruptible", INTERRUPTIBLE, 1, true },
-		{ "-hang", HANG, 10, true },
-		{ "-child", CHILD, 0 },
-		{ "-forked", FORKED, 0, true },
-		{ "-fd", FORKED | NEWFD, 0, true },
-		{ "-bomb", BOMB | NEWFD | INTERRUPTIBLE, 150 },
-		{ "-S3", BOMB | SUSPEND, 30 },
-		{ "-S4", BOMB | HIBERNATE, 30 },
+		{ "interruptible", INTERRUPTIBLE, 1, true },
+		{ "hang", HANG, 10, true },
+		{ "child", CHILD, 0 },
+		{ "forked", FORKED, 0, true },
+		{ "fd", FORKED | NEWFD, 0, true },
+		{ "bomb", BOMB | NEWFD | INTERRUPTIBLE, 150 },
+		{ "S3", BOMB | SUSPEND, 30 },
+		{ "S4", BOMB | HIBERNATE, 30 },
 		{ NULL }
 	}, *m;
 	bool master = false;
@@ -265,7 +267,7 @@ igt_main
 
 		fd = drm_open_driver(DRIVER_INTEL);
 		igt_require_gem(fd);
-		igt_require(gem_can_store_dword(fd, 0));
+		igt_require(gem_class_can_store_dword(fd, 0));
 		gen = intel_gen(intel_get_drm_devid(fd));
 		if (gen > 3 && gen < 6) { /* ctg and ilk need secure batches */
 			igt_device_set_master(fd);
@@ -276,21 +278,17 @@ igt_main
 		igt_info("Ring size: %d batches\n", ring_size);
 		igt_require(ring_size);
 	}
-
 	for (m = modes; m->suffix; m++) {
-		const struct intel_execution_engine *e;
-
-		for (e = intel_execution_engines; e->name; e++) {
-			igt_subtest_f("%s%s%s",
-				      m->basic && !e->exec_id ? "basic-" : "",
-				      e->name,
-				      m->suffix) {
-				igt_skip_on(m->flags & NEWFD && master);
-				run_test(fd, eb_ring(e), m->flags, m->timeout);
+
+		igt_skip_on(m->flags & NEWFD && master);
+		igt_subtest_with_dynamic_f("%s%s", m->basic  ? "basic-" : "",  m->suffix) {
+			__for_each_physical_engine(fd, e) {
+				igt_dynamic_f("%s", e->name) {
+					run_test(fd, e, m->flags, m->timeout);
+				}
 			}
 		}
 	}
-
 	igt_fixture
 		close(fd);
 }
-- 
2.25.0

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ GitLab.Pipeline: failure for tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines. (rev4)
  2020-02-18  7:09 [igt-dev] [PATCH V4] [PATCH i-g-t][V4] tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines satyavat
@ 2020-02-18 16:38 ` Patchwork
  2020-02-18 17:17 ` [igt-dev] ✗ Fi.CI.BAT: " Patchwork
  1 sibling, 0 replies; 5+ messages in thread
From: Patchwork @ 2020-02-18 16:38 UTC (permalink / raw)
  To: satyavat; +Cc: igt-dev

== Series Details ==

Series: tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines. (rev4)
URL   : https://patchwork.freedesktop.org/series/73463/
State : failure

== Summary ==

ERROR! This series introduces new undocumented tests:

gem_ringfill@S3
gem_ringfill@S4
gem_ringfill@basic-
gem_ringfill@basic-fd
gem_ringfill@basic-forked
gem_ringfill@basic-hang
gem_ringfill@basic-interruptible
gem_ringfill@bomb
gem_ringfill@child

Can you document them as per the requirement in the [CONTRIBUTING.md]?

[Documentation] has more details on how to do this.

Here are few examples:
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/0316695d03aa46108296b27f3982ec93200c7a6e
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/443cc658e1e6b492ee17bf4f4d891029eb7a205d

Thanks in advance!

[CONTRIBUTING.md]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/blob/master/CONTRIBUTING.md#L19
[Documentation]: https://drm.pages.freedesktop.org/igt-gpu-tools/igt-gpu-tools-Core.html#igt-describe

Other than that, pipeline status: SUCCESS.

see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/109905 for the overview.

== Logs ==

For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/109905
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ Fi.CI.BAT: failure for tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines. (rev4)
  2020-02-18  7:09 [igt-dev] [PATCH V4] [PATCH i-g-t][V4] tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines satyavat
  2020-02-18 16:38 ` [igt-dev] ✗ GitLab.Pipeline: failure for tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines. (rev4) Patchwork
@ 2020-02-18 17:17 ` Patchwork
  2020-02-25 10:28   ` Katarzyna Dec
  2020-02-25 10:42   ` Petri Latvala
  1 sibling, 2 replies; 5+ messages in thread
From: Patchwork @ 2020-02-18 17:17 UTC (permalink / raw)
  To: satyavat; +Cc: igt-dev

== Series Details ==

Series: tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines. (rev4)
URL   : https://patchwork.freedesktop.org/series/73463/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_7960 -> IGTPW_4172
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_4172 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_4172, 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_4172/index.html

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_ringfill@basic-default-forked:
    - fi-icl-u3:          [PASS][1] -> [SKIP][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-icl-u3/igt@gem_ringfill@basic-default-forked.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-icl-u3/igt@gem_ringfill@basic-default-forked.html
    - fi-icl-y:           [PASS][3] -> [SKIP][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-icl-y/igt@gem_ringfill@basic-default-forked.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-icl-y/igt@gem_ringfill@basic-default-forked.html
    - fi-icl-u2:          [PASS][5] -> [SKIP][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-icl-u2/igt@gem_ringfill@basic-default-forked.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-icl-u2/igt@gem_ringfill@basic-default-forked.html
    - fi-cml-u2:          [PASS][7] -> [SKIP][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-cml-u2/igt@gem_ringfill@basic-default-forked.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-cml-u2/igt@gem_ringfill@basic-default-forked.html
    - fi-icl-dsi:         [PASS][9] -> [SKIP][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-icl-dsi/igt@gem_ringfill@basic-default-forked.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-icl-dsi/igt@gem_ringfill@basic-default-forked.html
    - fi-ilk-650:         [PASS][11] -> [FAIL][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-ilk-650/igt@gem_ringfill@basic-default-forked.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-ilk-650/igt@gem_ringfill@basic-default-forked.html
    - fi-icl-guc:         [PASS][13] -> [SKIP][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-icl-guc/igt@gem_ringfill@basic-default-forked.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-icl-guc/igt@gem_ringfill@basic-default-forked.html
    - fi-cml-s:           [PASS][15] -> [SKIP][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-cml-s/igt@gem_ringfill@basic-default-forked.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-cml-s/igt@gem_ringfill@basic-default-forked.html

  
#### Suppressed ####

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

  * igt@gem_ringfill@basic-default-forked:
    - {fi-tgl-u}:         [PASS][17] -> [SKIP][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-tgl-u/igt@gem_ringfill@basic-default-forked.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-tgl-u/igt@gem_ringfill@basic-default-forked.html
    - {fi-tgl-dsi}:       [PASS][19] -> [SKIP][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-tgl-dsi/igt@gem_ringfill@basic-default-forked.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-tgl-dsi/igt@gem_ringfill@basic-default-forked.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ringfill@basic-default-forked:
    - fi-kbl-x1275:       [PASS][21] -> [SKIP][22] ([fdo#109271])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-kbl-x1275/igt@gem_ringfill@basic-default-forked.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-kbl-x1275/igt@gem_ringfill@basic-default-forked.html
    - fi-kbl-7500u:       [PASS][23] -> [SKIP][24] ([fdo#109271])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-kbl-7500u/igt@gem_ringfill@basic-default-forked.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-kbl-7500u/igt@gem_ringfill@basic-default-forked.html
    - fi-hsw-4770r:       [PASS][25] -> [SKIP][26] ([fdo#109271])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-hsw-4770r/igt@gem_ringfill@basic-default-forked.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-hsw-4770r/igt@gem_ringfill@basic-default-forked.html
    - fi-kbl-guc:         [PASS][27] -> [SKIP][28] ([fdo#109271])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-kbl-guc/igt@gem_ringfill@basic-default-forked.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-kbl-guc/igt@gem_ringfill@basic-default-forked.html
    - fi-bsw-kefka:       [PASS][29] -> [SKIP][30] ([fdo#109271])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-bsw-kefka/igt@gem_ringfill@basic-default-forked.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-bsw-kefka/igt@gem_ringfill@basic-default-forked.html
    - fi-skl-guc:         [PASS][31] -> [SKIP][32] ([fdo#109271])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-skl-guc/igt@gem_ringfill@basic-default-forked.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-skl-guc/igt@gem_ringfill@basic-default-forked.html
    - fi-kbl-r:           [PASS][33] -> [SKIP][34] ([fdo#109271])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-kbl-r/igt@gem_ringfill@basic-default-forked.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-kbl-r/igt@gem_ringfill@basic-default-forked.html
    - fi-kbl-8809g:       [PASS][35] -> [SKIP][36] ([fdo#109271])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-kbl-8809g/igt@gem_ringfill@basic-default-forked.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-kbl-8809g/igt@gem_ringfill@basic-default-forked.html
    - fi-blb-e6850:       [PASS][37] -> [SKIP][38] ([fdo#109271])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-blb-e6850/igt@gem_ringfill@basic-default-forked.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-blb-e6850/igt@gem_ringfill@basic-default-forked.html
    - fi-bdw-5557u:       [PASS][39] -> [SKIP][40] ([fdo#109271])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-bdw-5557u/igt@gem_ringfill@basic-default-forked.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-bdw-5557u/igt@gem_ringfill@basic-default-forked.html
    - fi-apl-guc:         [PASS][41] -> [SKIP][42] ([fdo#109271])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-apl-guc/igt@gem_ringfill@basic-default-forked.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-apl-guc/igt@gem_ringfill@basic-default-forked.html
    - fi-cfl-8700k:       [PASS][43] -> [SKIP][44] ([fdo#109271])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-cfl-8700k/igt@gem_ringfill@basic-default-forked.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-cfl-8700k/igt@gem_ringfill@basic-default-forked.html
    - fi-bxt-dsi:         [PASS][45] -> [SKIP][46] ([fdo#109271])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-bxt-dsi/igt@gem_ringfill@basic-default-forked.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-bxt-dsi/igt@gem_ringfill@basic-default-forked.html
    - fi-skl-6600u:       [PASS][47] -> [SKIP][48] ([fdo#109271])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-skl-6600u/igt@gem_ringfill@basic-default-forked.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-skl-6600u/igt@gem_ringfill@basic-default-forked.html
    - fi-pnv-d510:        [PASS][49] -> [SKIP][50] ([fdo#109271])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-pnv-d510/igt@gem_ringfill@basic-default-forked.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-pnv-d510/igt@gem_ringfill@basic-default-forked.html
    - fi-bsw-n3050:       [PASS][51] -> [SKIP][52] ([fdo#109271])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-bsw-n3050/igt@gem_ringfill@basic-default-forked.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-bsw-n3050/igt@gem_ringfill@basic-default-forked.html
    - fi-hsw-4770:        [PASS][53] -> [SKIP][54] ([fdo#109271])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-hsw-4770/igt@gem_ringfill@basic-default-forked.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-hsw-4770/igt@gem_ringfill@basic-default-forked.html
    - fi-cfl-guc:         [PASS][55] -> [SKIP][56] ([fdo#109271])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-cfl-guc/igt@gem_ringfill@basic-default-forked.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-cfl-guc/igt@gem_ringfill@basic-default-forked.html
    - fi-skl-6700k2:      [PASS][57] -> [SKIP][58] ([fdo#109271])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-skl-6700k2/igt@gem_ringfill@basic-default-forked.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-skl-6700k2/igt@gem_ringfill@basic-default-forked.html
    - fi-skl-lmem:        [PASS][59] -> [SKIP][60] ([fdo#109271])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-skl-lmem/igt@gem_ringfill@basic-default-forked.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-skl-lmem/igt@gem_ringfill@basic-default-forked.html
    - fi-glk-dsi:         [PASS][61] -> [SKIP][62] ([fdo#109271])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-glk-dsi/igt@gem_ringfill@basic-default-forked.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-glk-dsi/igt@gem_ringfill@basic-default-forked.html
    - fi-ivb-3770:        [PASS][63] -> [SKIP][64] ([fdo#109271])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-ivb-3770/igt@gem_ringfill@basic-default-forked.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-ivb-3770/igt@gem_ringfill@basic-default-forked.html
    - fi-snb-2600:        [PASS][65] -> [SKIP][66] ([fdo#109271])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-snb-2600/igt@gem_ringfill@basic-default-forked.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-snb-2600/igt@gem_ringfill@basic-default-forked.html

  * igt@i915_module_load@reload:
    - fi-skl-6770hq:      [PASS][67] -> [DMESG-WARN][68] ([i915#92]) +1 similar issue
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-skl-6770hq/igt@i915_module_load@reload.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-skl-6770hq/igt@i915_module_load@reload.html

  * igt@i915_selftest@live_hangcheck:
    - fi-icl-dsi:         [PASS][69] -> [INCOMPLETE][70] ([fdo#108569])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-icl-dsi/igt@i915_selftest@live_hangcheck.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-icl-dsi/igt@i915_selftest@live_hangcheck.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence:
    - fi-skl-6770hq:      [PASS][71] -> [SKIP][72] ([fdo#109271]) +5 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-skl-6770hq/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-skl-6770hq/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-c:
    - fi-skl-6770hq:      [PASS][73] -> [DMESG-WARN][74] ([i915#106])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-skl-6770hq/igt@kms_pipe_crc_basic@read-crc-pipe-c.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-skl-6770hq/igt@kms_pipe_crc_basic@read-crc-pipe-c.html

  
#### Possible fixes ####

  * igt@i915_selftest@live_blt:
    - fi-hsw-4770r:       [DMESG-FAIL][75] ([i915#553] / [i915#725]) -> [PASS][76]
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-hsw-4770r/igt@i915_selftest@live_blt.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-hsw-4770r/igt@i915_selftest@live_blt.html

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

  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#106]: https://gitlab.freedesktop.org/drm/intel/issues/106
  [i915#1233]: https://gitlab.freedesktop.org/drm/intel/issues/1233
  [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553
  [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725
  [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92


Participating hosts (46 -> 45)
------------------------------

  Additional (5): fi-kbl-soraka fi-hsw-peppy fi-snb-2520m fi-gdg-551 fi-cfl-8109u 
  Missing    (6): fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5447 -> IGTPW_4172

  CI-20190529: 20190529
  CI_DRM_7960: b86443a3c1d1b32a03f381c9198eed9243f06d18 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4172: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/index.html
  IGT_5447: 8d6b2500e44d3dc78b5eac8798f0de42f2ff9014 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@gem_ringfill@basic-
+igt@gem_ringfill@basic-fd
+igt@gem_ringfill@basic-forked
+igt@gem_ringfill@basic-hang
+igt@gem_ringfill@basic-interruptible
+igt@gem_ringfill@bomb
+igt@gem_ringfill@child
+igt@gem_ringfill@s3
+igt@gem_ringfill@s4
-igt@gem_ringfill@basic-default
-igt@gem_ringfill@basic-default-fd
-igt@gem_ringfill@basic-default-forked
-igt@gem_ringfill@basic-default-hang
-igt@gem_ringfill@basic-default-interruptible
-igt@gem_ringfill@blt
-igt@gem_ringfill@blt-bomb
-igt@gem_ringfill@blt-child
-igt@gem_ringfill@blt-fd
-igt@gem_ringfill@blt-forked
-igt@gem_ringfill@blt-hang
-igt@gem_ringfill@blt-interruptible
-igt@gem_ringfill@blt-s3
-igt@gem_ringfill@blt-s4
-igt@gem_ringfill@bsd
-igt@gem_ringfill@bsd1
-igt@gem_ringfill@bsd1-bomb
-igt@gem_ringfill@bsd1-child
-igt@gem_ringfill@bsd1-fd
-igt@gem_ringfill@bsd1-forked
-igt@gem_ringfill@bsd1-hang
-igt@gem_ringfill@bsd1-interruptible
-igt@gem_ringfill@bsd1-s3
-igt@gem_ringfill@bsd1-s4
-igt@gem_ringfill@bsd2
-igt@gem_ringfill@bsd2-bomb
-igt@gem_ringfill@bsd2-child
-igt@gem_ringfill@bsd2-fd
-igt@gem_ringfill@bsd2-forked
-igt@gem_ringfill@bsd2-hang
-igt@gem_ringfill@bsd2-interruptible
-igt@gem_ringfill@bsd2-s3
-igt@gem_ringfill@bsd2-s4
-igt@gem_ringfill@bsd-bomb
-igt@gem_ringfill@bsd-child
-igt@gem_ringfill@bsd-fd
-igt@gem_ringfill@bsd-forked
-igt@gem_ringfill@bsd-hang
-igt@gem_ringfill@bsd-interruptible
-igt@gem_ringfill@bsd-s3
-igt@gem_ringfill@bsd-s4
-igt@gem_ringfill@default-bomb
-igt@gem_ringfill@default-child
-igt@gem_ringfill@default-s3
-igt@gem_ringfill@default-s4
-igt@gem_ringfill@render
-igt@gem_ringfill@render-bomb
-igt@gem_ringfill@render-child
-igt@gem_ringfill@render-fd
-igt@gem_ringfill@render-forked
-igt@gem_ringfill@render-hang
-igt@gem_ringfill@render-interruptible
-igt@gem_ringfill@render-s3
-igt@gem_ringfill@render-s4
-igt@gem_ringfill@vebox
-igt@gem_ringfill@vebox-bomb
-igt@gem_ringfill@vebox-child
-igt@gem_ringfill@vebox-fd
-igt@gem_ringfill@vebox-forked
-igt@gem_ringfill@vebox-hang
-igt@gem_ringfill@vebox-interruptible
-igt@gem_ringfill@vebox-s3
-igt@gem_ringfill@vebox-s4

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines. (rev4)
  2020-02-18 17:17 ` [igt-dev] ✗ Fi.CI.BAT: " Patchwork
@ 2020-02-25 10:28   ` Katarzyna Dec
  2020-02-25 10:42   ` Petri Latvala
  1 sibling, 0 replies; 5+ messages in thread
From: Katarzyna Dec @ 2020-02-25 10:28 UTC (permalink / raw)
  To: igt-dev, satyavat

On Tue, Feb 18, 2020 at 05:17:28PM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines. (rev4)
> URL   : https://patchwork.freedesktop.org/series/73463/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_7960 -> IGTPW_4172
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
Please look at these failures - are related to your changes (possibly).
Code can be merged only after r-b and tests passed.
Kasia
> 
>   Serious unknown changes coming with IGTPW_4172 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_4172, 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_4172/index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_4172:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@gem_ringfill@basic-default-forked:
>     - fi-icl-u3:          [PASS][1] -> [SKIP][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-icl-u3/igt@gem_ringfill@basic-default-forked.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-icl-u3/igt@gem_ringfill@basic-default-forked.html
>     - fi-icl-y:           [PASS][3] -> [SKIP][4]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-icl-y/igt@gem_ringfill@basic-default-forked.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-icl-y/igt@gem_ringfill@basic-default-forked.html
>     - fi-icl-u2:          [PASS][5] -> [SKIP][6]
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-icl-u2/igt@gem_ringfill@basic-default-forked.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-icl-u2/igt@gem_ringfill@basic-default-forked.html
>     - fi-cml-u2:          [PASS][7] -> [SKIP][8]
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-cml-u2/igt@gem_ringfill@basic-default-forked.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-cml-u2/igt@gem_ringfill@basic-default-forked.html
>     - fi-icl-dsi:         [PASS][9] -> [SKIP][10]
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-icl-dsi/igt@gem_ringfill@basic-default-forked.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-icl-dsi/igt@gem_ringfill@basic-default-forked.html
>     - fi-ilk-650:         [PASS][11] -> [FAIL][12]
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-ilk-650/igt@gem_ringfill@basic-default-forked.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-ilk-650/igt@gem_ringfill@basic-default-forked.html
>     - fi-icl-guc:         [PASS][13] -> [SKIP][14]
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-icl-guc/igt@gem_ringfill@basic-default-forked.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-icl-guc/igt@gem_ringfill@basic-default-forked.html
>     - fi-cml-s:           [PASS][15] -> [SKIP][16]
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-cml-s/igt@gem_ringfill@basic-default-forked.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-cml-s/igt@gem_ringfill@basic-default-forked.html
> 
>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * igt@gem_ringfill@basic-default-forked:
>     - {fi-tgl-u}:         [PASS][17] -> [SKIP][18]
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-tgl-u/igt@gem_ringfill@basic-default-forked.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-tgl-u/igt@gem_ringfill@basic-default-forked.html
>     - {fi-tgl-dsi}:       [PASS][19] -> [SKIP][20]
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-tgl-dsi/igt@gem_ringfill@basic-default-forked.html
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-tgl-dsi/igt@gem_ringfill@basic-default-forked.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_4172 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_ringfill@basic-default-forked:
>     - fi-kbl-x1275:       [PASS][21] -> [SKIP][22] ([fdo#109271])
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-kbl-x1275/igt@gem_ringfill@basic-default-forked.html
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-kbl-x1275/igt@gem_ringfill@basic-default-forked.html
>     - fi-kbl-7500u:       [PASS][23] -> [SKIP][24] ([fdo#109271])
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-kbl-7500u/igt@gem_ringfill@basic-default-forked.html
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-kbl-7500u/igt@gem_ringfill@basic-default-forked.html
>     - fi-hsw-4770r:       [PASS][25] -> [SKIP][26] ([fdo#109271])
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-hsw-4770r/igt@gem_ringfill@basic-default-forked.html
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-hsw-4770r/igt@gem_ringfill@basic-default-forked.html
>     - fi-kbl-guc:         [PASS][27] -> [SKIP][28] ([fdo#109271])
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-kbl-guc/igt@gem_ringfill@basic-default-forked.html
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-kbl-guc/igt@gem_ringfill@basic-default-forked.html
>     - fi-bsw-kefka:       [PASS][29] -> [SKIP][30] ([fdo#109271])
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-bsw-kefka/igt@gem_ringfill@basic-default-forked.html
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-bsw-kefka/igt@gem_ringfill@basic-default-forked.html
>     - fi-skl-guc:         [PASS][31] -> [SKIP][32] ([fdo#109271])
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-skl-guc/igt@gem_ringfill@basic-default-forked.html
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-skl-guc/igt@gem_ringfill@basic-default-forked.html
>     - fi-kbl-r:           [PASS][33] -> [SKIP][34] ([fdo#109271])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-kbl-r/igt@gem_ringfill@basic-default-forked.html
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-kbl-r/igt@gem_ringfill@basic-default-forked.html
>     - fi-kbl-8809g:       [PASS][35] -> [SKIP][36] ([fdo#109271])
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-kbl-8809g/igt@gem_ringfill@basic-default-forked.html
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-kbl-8809g/igt@gem_ringfill@basic-default-forked.html
>     - fi-blb-e6850:       [PASS][37] -> [SKIP][38] ([fdo#109271])
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-blb-e6850/igt@gem_ringfill@basic-default-forked.html
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-blb-e6850/igt@gem_ringfill@basic-default-forked.html
>     - fi-bdw-5557u:       [PASS][39] -> [SKIP][40] ([fdo#109271])
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-bdw-5557u/igt@gem_ringfill@basic-default-forked.html
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-bdw-5557u/igt@gem_ringfill@basic-default-forked.html
>     - fi-apl-guc:         [PASS][41] -> [SKIP][42] ([fdo#109271])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-apl-guc/igt@gem_ringfill@basic-default-forked.html
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-apl-guc/igt@gem_ringfill@basic-default-forked.html
>     - fi-cfl-8700k:       [PASS][43] -> [SKIP][44] ([fdo#109271])
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-cfl-8700k/igt@gem_ringfill@basic-default-forked.html
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-cfl-8700k/igt@gem_ringfill@basic-default-forked.html
>     - fi-bxt-dsi:         [PASS][45] -> [SKIP][46] ([fdo#109271])
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-bxt-dsi/igt@gem_ringfill@basic-default-forked.html
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-bxt-dsi/igt@gem_ringfill@basic-default-forked.html
>     - fi-skl-6600u:       [PASS][47] -> [SKIP][48] ([fdo#109271])
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-skl-6600u/igt@gem_ringfill@basic-default-forked.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-skl-6600u/igt@gem_ringfill@basic-default-forked.html
>     - fi-pnv-d510:        [PASS][49] -> [SKIP][50] ([fdo#109271])
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-pnv-d510/igt@gem_ringfill@basic-default-forked.html
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-pnv-d510/igt@gem_ringfill@basic-default-forked.html
>     - fi-bsw-n3050:       [PASS][51] -> [SKIP][52] ([fdo#109271])
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-bsw-n3050/igt@gem_ringfill@basic-default-forked.html
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-bsw-n3050/igt@gem_ringfill@basic-default-forked.html
>     - fi-hsw-4770:        [PASS][53] -> [SKIP][54] ([fdo#109271])
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-hsw-4770/igt@gem_ringfill@basic-default-forked.html
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-hsw-4770/igt@gem_ringfill@basic-default-forked.html
>     - fi-cfl-guc:         [PASS][55] -> [SKIP][56] ([fdo#109271])
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-cfl-guc/igt@gem_ringfill@basic-default-forked.html
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-cfl-guc/igt@gem_ringfill@basic-default-forked.html
>     - fi-skl-6700k2:      [PASS][57] -> [SKIP][58] ([fdo#109271])
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-skl-6700k2/igt@gem_ringfill@basic-default-forked.html
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-skl-6700k2/igt@gem_ringfill@basic-default-forked.html
>     - fi-skl-lmem:        [PASS][59] -> [SKIP][60] ([fdo#109271])
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-skl-lmem/igt@gem_ringfill@basic-default-forked.html
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-skl-lmem/igt@gem_ringfill@basic-default-forked.html
>     - fi-glk-dsi:         [PASS][61] -> [SKIP][62] ([fdo#109271])
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-glk-dsi/igt@gem_ringfill@basic-default-forked.html
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-glk-dsi/igt@gem_ringfill@basic-default-forked.html
>     - fi-ivb-3770:        [PASS][63] -> [SKIP][64] ([fdo#109271])
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-ivb-3770/igt@gem_ringfill@basic-default-forked.html
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-ivb-3770/igt@gem_ringfill@basic-default-forked.html
>     - fi-snb-2600:        [PASS][65] -> [SKIP][66] ([fdo#109271])
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-snb-2600/igt@gem_ringfill@basic-default-forked.html
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-snb-2600/igt@gem_ringfill@basic-default-forked.html
> 
>   * igt@i915_module_load@reload:
>     - fi-skl-6770hq:      [PASS][67] -> [DMESG-WARN][68] ([i915#92]) +1 similar issue
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-skl-6770hq/igt@i915_module_load@reload.html
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-skl-6770hq/igt@i915_module_load@reload.html
> 
>   * igt@i915_selftest@live_hangcheck:
>     - fi-icl-dsi:         [PASS][69] -> [INCOMPLETE][70] ([fdo#108569])
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-icl-dsi/igt@i915_selftest@live_hangcheck.html
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-icl-dsi/igt@i915_selftest@live_hangcheck.html
> 
>   * igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence:
>     - fi-skl-6770hq:      [PASS][71] -> [SKIP][72] ([fdo#109271]) +5 similar issues
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-skl-6770hq/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-skl-6770hq/igt@kms_pipe_crc_basic@read-crc-pipe-a-frame-sequence.html
> 
>   * igt@kms_pipe_crc_basic@read-crc-pipe-c:
>     - fi-skl-6770hq:      [PASS][73] -> [DMESG-WARN][74] ([i915#106])
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-skl-6770hq/igt@kms_pipe_crc_basic@read-crc-pipe-c.html
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-skl-6770hq/igt@kms_pipe_crc_basic@read-crc-pipe-c.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@i915_selftest@live_blt:
>     - fi-hsw-4770r:       [DMESG-FAIL][75] ([i915#553] / [i915#725]) -> [PASS][76]
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7960/fi-hsw-4770r/igt@i915_selftest@live_blt.html
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/fi-hsw-4770r/igt@i915_selftest@live_blt.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [i915#106]: https://gitlab.freedesktop.org/drm/intel/issues/106
>   [i915#1233]: https://gitlab.freedesktop.org/drm/intel/issues/1233
>   [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553
>   [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725
>   [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
> 
> 
> Participating hosts (46 -> 45)
> ------------------------------
> 
>   Additional (5): fi-kbl-soraka fi-hsw-peppy fi-snb-2520m fi-gdg-551 fi-cfl-8109u 
>   Missing    (6): fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus 
> 
> 
> Build changes
> -------------
> 
>   * CI: CI-20190529 -> None
>   * IGT: IGT_5447 -> IGTPW_4172
> 
>   CI-20190529: 20190529
>   CI_DRM_7960: b86443a3c1d1b32a03f381c9198eed9243f06d18 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_4172: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/index.html
>   IGT_5447: 8d6b2500e44d3dc78b5eac8798f0de42f2ff9014 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> 
> 
> 
> == Testlist changes ==
> 
> +igt@gem_ringfill@basic-
> +igt@gem_ringfill@basic-fd
> +igt@gem_ringfill@basic-forked
> +igt@gem_ringfill@basic-hang
> +igt@gem_ringfill@basic-interruptible
> +igt@gem_ringfill@bomb
> +igt@gem_ringfill@child
> +igt@gem_ringfill@s3
> +igt@gem_ringfill@s4
> -igt@gem_ringfill@basic-default
> -igt@gem_ringfill@basic-default-fd
> -igt@gem_ringfill@basic-default-forked
> -igt@gem_ringfill@basic-default-hang
> -igt@gem_ringfill@basic-default-interruptible
> -igt@gem_ringfill@blt
> -igt@gem_ringfill@blt-bomb
> -igt@gem_ringfill@blt-child
> -igt@gem_ringfill@blt-fd
> -igt@gem_ringfill@blt-forked
> -igt@gem_ringfill@blt-hang
> -igt@gem_ringfill@blt-interruptible
> -igt@gem_ringfill@blt-s3
> -igt@gem_ringfill@blt-s4
> -igt@gem_ringfill@bsd
> -igt@gem_ringfill@bsd1
> -igt@gem_ringfill@bsd1-bomb
> -igt@gem_ringfill@bsd1-child
> -igt@gem_ringfill@bsd1-fd
> -igt@gem_ringfill@bsd1-forked
> -igt@gem_ringfill@bsd1-hang
> -igt@gem_ringfill@bsd1-interruptible
> -igt@gem_ringfill@bsd1-s3
> -igt@gem_ringfill@bsd1-s4
> -igt@gem_ringfill@bsd2
> -igt@gem_ringfill@bsd2-bomb
> -igt@gem_ringfill@bsd2-child
> -igt@gem_ringfill@bsd2-fd
> -igt@gem_ringfill@bsd2-forked
> -igt@gem_ringfill@bsd2-hang
> -igt@gem_ringfill@bsd2-interruptible
> -igt@gem_ringfill@bsd2-s3
> -igt@gem_ringfill@bsd2-s4
> -igt@gem_ringfill@bsd-bomb
> -igt@gem_ringfill@bsd-child
> -igt@gem_ringfill@bsd-fd
> -igt@gem_ringfill@bsd-forked
> -igt@gem_ringfill@bsd-hang
> -igt@gem_ringfill@bsd-interruptible
> -igt@gem_ringfill@bsd-s3
> -igt@gem_ringfill@bsd-s4
> -igt@gem_ringfill@default-bomb
> -igt@gem_ringfill@default-child
> -igt@gem_ringfill@default-s3
> -igt@gem_ringfill@default-s4
> -igt@gem_ringfill@render
> -igt@gem_ringfill@render-bomb
> -igt@gem_ringfill@render-child
> -igt@gem_ringfill@render-fd
> -igt@gem_ringfill@render-forked
> -igt@gem_ringfill@render-hang
> -igt@gem_ringfill@render-interruptible
> -igt@gem_ringfill@render-s3
> -igt@gem_ringfill@render-s4
> -igt@gem_ringfill@vebox
> -igt@gem_ringfill@vebox-bomb
> -igt@gem_ringfill@vebox-child
> -igt@gem_ringfill@vebox-fd
> -igt@gem_ringfill@vebox-forked
> -igt@gem_ringfill@vebox-hang
> -igt@gem_ringfill@vebox-interruptible
> -igt@gem_ringfill@vebox-s3
> -igt@gem_ringfill@vebox-s4
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4172/index.html
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines. (rev4)
  2020-02-18 17:17 ` [igt-dev] ✗ Fi.CI.BAT: " Patchwork
  2020-02-25 10:28   ` Katarzyna Dec
@ 2020-02-25 10:42   ` Petri Latvala
  1 sibling, 0 replies; 5+ messages in thread
From: Petri Latvala @ 2020-02-25 10:42 UTC (permalink / raw)
  To: igt-dev; +Cc: satyavat

On Tue, Feb 18, 2020 at 05:17:28PM +0000, Patchwork wrote:
> == Testlist changes ==
> 
> +igt@gem_ringfill@basic-
> +igt@gem_ringfill@basic-fd
> +igt@gem_ringfill@basic-forked
> +igt@gem_ringfill@basic-hang
> +igt@gem_ringfill@basic-interruptible
> +igt@gem_ringfill@bomb
> +igt@gem_ringfill@child
> +igt@gem_ringfill@s3
> +igt@gem_ringfill@s4


A bit more work needs to be put into the loop to avoid the "basic-"
subtest name when suffix is empty and m->basic is true. That subtest
needs to be just "basic".


-- 
Petri Latvala
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2020-02-25 10:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-18  7:09 [igt-dev] [PATCH V4] [PATCH i-g-t][V4] tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines satyavat
2020-02-18 16:38 ` [igt-dev] ✗ GitLab.Pipeline: failure for tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines. (rev4) Patchwork
2020-02-18 17:17 ` [igt-dev] ✗ Fi.CI.BAT: " Patchwork
2020-02-25 10:28   ` Katarzyna Dec
2020-02-25 10:42   ` Petri Latvala

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.