* [igt-dev] [PATCH] [PATCH i-g-t] tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines.
@ 2020-02-14 12:52 satyavat
2020-02-14 13:25 ` [igt-dev] ✗ GitLab.Pipeline: failure for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: satyavat @ 2020-02-14 12:52 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
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 | 44 +++++++++++++++++++--------------------
1 file changed, 21 insertions(+), 23 deletions(-)
diff --git a/tests/i915/gem_ringfill.c b/tests/i915/gem_ringfill.c
index 4c73f4d9..c921f04d 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 = gem_reopen_driver(fd);
+ gem_context_copy_engines(fd, 0, i915, 0);
+ setup_execbuf(fd, &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;
@@ -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. 2020-02-14 12:52 [igt-dev] [PATCH] [PATCH i-g-t] tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines satyavat @ 2020-02-14 13:25 ` Patchwork 2020-02-14 13:37 ` [igt-dev] [PATCH] [PATCH i-g-t] " Chris Wilson ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2020-02-14 13:25 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. 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@-bomb gem_ringfill@-child gem_ringfill@basic gem_ringfill@basic-fd gem_ringfill@basic-forked gem_ringfill@basic-hang gem_ringfill@basic-interruptible 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/108686 for the overview. == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/108686 _______________________________________________ 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] [PATCH] [PATCH i-g-t] tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines. 2020-02-14 12:52 [igt-dev] [PATCH] [PATCH i-g-t] tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines satyavat 2020-02-14 13:25 ` [igt-dev] ✗ GitLab.Pipeline: failure for " Patchwork @ 2020-02-14 13:37 ` Chris Wilson 2020-02-14 13:43 ` Petri Latvala 2020-02-14 13:59 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Chris Wilson @ 2020-02-14 13:37 UTC (permalink / raw) To: igt-dev, satyavathi.k Quoting satyavat (2020-02-14 12:52:54) > @@ -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 = gem_reopen_driver(fd); > + gem_context_copy_engines(fd, 0, i915, 0); > + setup_execbuf(fd, &execbuf, obj, reloc, e); > } > fill_ring(fd, &execbuf, flags, timeout); Doesn't this change the test somewhat? -Chris _______________________________________________ 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] [PATCH] [PATCH i-g-t] tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines. 2020-02-14 12:52 [igt-dev] [PATCH] [PATCH i-g-t] tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines satyavat 2020-02-14 13:25 ` [igt-dev] ✗ GitLab.Pipeline: failure for " Patchwork 2020-02-14 13:37 ` [igt-dev] [PATCH] [PATCH i-g-t] " Chris Wilson @ 2020-02-14 13:43 ` Petri Latvala 2020-02-14 13:59 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Petri Latvala @ 2020-02-14 13:43 UTC (permalink / raw) To: satyavat; +Cc: igt-dev On Fri, Feb 14, 2020 at 06:22:54PM +0530, satyavat wrote: > Replaced the legacy for_each_engine* defines with the ones implemented > in the gem_engine_topology library. > > subtest that is modified: Ringfill > > 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 | 44 +++++++++++++++++++-------------------- > 1 file changed, 21 insertions(+), 23 deletions(-) > > diff --git a/tests/i915/gem_ringfill.c b/tests/i915/gem_ringfill.c > index 4c73f4d9..c921f04d 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 = gem_reopen_driver(fd); > + gem_context_copy_engines(fd, 0, i915, 0); > + setup_execbuf(fd, &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; > @@ -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) { As seen from the gitlab mail, this makes the non-basic subtest names begin with '-'. Remove the - from the suffix lists and use "basic-" here instead. -- 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
* [igt-dev] ✗ Fi.CI.BAT: failure for tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines. 2020-02-14 12:52 [igt-dev] [PATCH] [PATCH i-g-t] tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines satyavat ` (2 preceding siblings ...) 2020-02-14 13:43 ` Petri Latvala @ 2020-02-14 13:59 ` Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2020-02-14 13:59 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. URL : https://patchwork.freedesktop.org/series/73463/ State : failure == Summary == CI Bug Log - changes from CI_DRM_7939 -> IGTPW_4152 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_4152 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4152, 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_4152/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4152: ### IGT changes ### #### Possible regressions #### * igt@gem_ringfill@basic-default-forked: - fi-icl-u3: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-icl-u3/igt@gem_ringfill@basic-default-forked.html - fi-icl-y: [PASS][2] -> [SKIP][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-icl-y/igt@gem_ringfill@basic-default-forked.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-icl-y/igt@gem_ringfill@basic-default-forked.html - fi-icl-u2: [PASS][4] -> [SKIP][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-icl-u2/igt@gem_ringfill@basic-default-forked.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-icl-u2/igt@gem_ringfill@basic-default-forked.html - fi-cml-u2: [PASS][6] -> [SKIP][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-cml-u2/igt@gem_ringfill@basic-default-forked.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-cml-u2/igt@gem_ringfill@basic-default-forked.html - fi-icl-dsi: [PASS][8] -> [SKIP][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-icl-dsi/igt@gem_ringfill@basic-default-forked.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-icl-dsi/igt@gem_ringfill@basic-default-forked.html - fi-ilk-650: [PASS][10] -> [FAIL][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-ilk-650/igt@gem_ringfill@basic-default-forked.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-ilk-650/igt@gem_ringfill@basic-default-forked.html - fi-icl-guc: [PASS][12] -> [SKIP][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-icl-guc/igt@gem_ringfill@basic-default-forked.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-icl-guc/igt@gem_ringfill@basic-default-forked.html - fi-cml-s: [PASS][14] -> [SKIP][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-cml-s/igt@gem_ringfill@basic-default-forked.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/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][16] -> [SKIP][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-tgl-u/igt@gem_ringfill@basic-default-forked.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-tgl-u/igt@gem_ringfill@basic-default-forked.html - {fi-tgl-dsi}: [PASS][18] -> [SKIP][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-tgl-dsi/igt@gem_ringfill@basic-default-forked.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-tgl-dsi/igt@gem_ringfill@basic-default-forked.html Known issues ------------ Here are the changes found in IGTPW_4152 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_close_race@basic-threads: - fi-byt-n2820: [PASS][20] -> [INCOMPLETE][21] ([i915#45]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-byt-n2820/igt@gem_close_race@basic-threads.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-byt-n2820/igt@gem_close_race@basic-threads.html * igt@gem_ringfill@basic-default-forked: - fi-kbl-x1275: [PASS][22] -> [SKIP][23] ([fdo#109271]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-kbl-x1275/igt@gem_ringfill@basic-default-forked.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-kbl-x1275/igt@gem_ringfill@basic-default-forked.html - fi-kbl-7500u: [PASS][24] -> [SKIP][25] ([fdo#109271]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-kbl-7500u/igt@gem_ringfill@basic-default-forked.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-kbl-7500u/igt@gem_ringfill@basic-default-forked.html - fi-hsw-4770r: [PASS][26] -> [SKIP][27] ([fdo#109271]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-hsw-4770r/igt@gem_ringfill@basic-default-forked.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-hsw-4770r/igt@gem_ringfill@basic-default-forked.html - fi-kbl-guc: [PASS][28] -> [SKIP][29] ([fdo#109271]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-kbl-guc/igt@gem_ringfill@basic-default-forked.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-kbl-guc/igt@gem_ringfill@basic-default-forked.html - fi-skl-guc: [PASS][30] -> [SKIP][31] ([fdo#109271]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-skl-guc/igt@gem_ringfill@basic-default-forked.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-skl-guc/igt@gem_ringfill@basic-default-forked.html - fi-kbl-8809g: [PASS][32] -> [SKIP][33] ([fdo#109271]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-kbl-8809g/igt@gem_ringfill@basic-default-forked.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-kbl-8809g/igt@gem_ringfill@basic-default-forked.html - fi-blb-e6850: [PASS][34] -> [SKIP][35] ([fdo#109271]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-blb-e6850/igt@gem_ringfill@basic-default-forked.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-blb-e6850/igt@gem_ringfill@basic-default-forked.html - fi-bsw-nick: [PASS][36] -> [SKIP][37] ([fdo#109271]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-bsw-nick/igt@gem_ringfill@basic-default-forked.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-bsw-nick/igt@gem_ringfill@basic-default-forked.html - fi-bdw-5557u: [PASS][38] -> [SKIP][39] ([fdo#109271]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-bdw-5557u/igt@gem_ringfill@basic-default-forked.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-bdw-5557u/igt@gem_ringfill@basic-default-forked.html - fi-apl-guc: [PASS][40] -> [SKIP][41] ([fdo#109271]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-apl-guc/igt@gem_ringfill@basic-default-forked.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-apl-guc/igt@gem_ringfill@basic-default-forked.html - fi-cfl-8109u: [PASS][42] -> [SKIP][43] ([fdo#109271]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-cfl-8109u/igt@gem_ringfill@basic-default-forked.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-cfl-8109u/igt@gem_ringfill@basic-default-forked.html - fi-snb-2520m: [PASS][44] -> [SKIP][45] ([fdo#109271]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-snb-2520m/igt@gem_ringfill@basic-default-forked.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-snb-2520m/igt@gem_ringfill@basic-default-forked.html - fi-cfl-8700k: [PASS][46] -> [SKIP][47] ([fdo#109271]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-cfl-8700k/igt@gem_ringfill@basic-default-forked.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-cfl-8700k/igt@gem_ringfill@basic-default-forked.html - fi-bxt-dsi: [PASS][48] -> [SKIP][49] ([fdo#109271]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-bxt-dsi/igt@gem_ringfill@basic-default-forked.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-bxt-dsi/igt@gem_ringfill@basic-default-forked.html - fi-pnv-d510: [PASS][50] -> [SKIP][51] ([fdo#109271]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-pnv-d510/igt@gem_ringfill@basic-default-forked.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-pnv-d510/igt@gem_ringfill@basic-default-forked.html - fi-bsw-n3050: [PASS][52] -> [SKIP][53] ([fdo#109271]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-bsw-n3050/igt@gem_ringfill@basic-default-forked.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-bsw-n3050/igt@gem_ringfill@basic-default-forked.html - fi-hsw-4770: [PASS][54] -> [SKIP][55] ([fdo#109271]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-hsw-4770/igt@gem_ringfill@basic-default-forked.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-hsw-4770/igt@gem_ringfill@basic-default-forked.html - fi-cfl-guc: [PASS][56] -> [SKIP][57] ([fdo#109271]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-cfl-guc/igt@gem_ringfill@basic-default-forked.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-cfl-guc/igt@gem_ringfill@basic-default-forked.html - fi-skl-6700k2: [PASS][58] -> [SKIP][59] ([fdo#109271]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-skl-6700k2/igt@gem_ringfill@basic-default-forked.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-skl-6700k2/igt@gem_ringfill@basic-default-forked.html - fi-skl-lmem: [PASS][60] -> [SKIP][61] ([fdo#109271]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-skl-lmem/igt@gem_ringfill@basic-default-forked.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-skl-lmem/igt@gem_ringfill@basic-default-forked.html - fi-snb-2600: [PASS][62] -> [SKIP][63] ([fdo#109271]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-snb-2600/igt@gem_ringfill@basic-default-forked.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-snb-2600/igt@gem_ringfill@basic-default-forked.html * igt@i915_selftest@live_gem_contexts: - fi-cml-s: [PASS][64] -> [DMESG-FAIL][65] ([i915#877]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-cml-s/igt@i915_selftest@live_gem_contexts.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-cml-s/igt@i915_selftest@live_gem_contexts.html #### Possible fixes #### * igt@i915_selftest@live_execlists: - fi-icl-y: [DMESG-FAIL][66] ([fdo#108569]) -> [PASS][67] [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-icl-y/igt@i915_selftest@live_execlists.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-icl-y/igt@i915_selftest@live_execlists.html #### Warnings #### * igt@i915_pm_rpm@basic-rte: - fi-kbl-guc: [FAIL][68] ([i915#579]) -> [SKIP][69] ([fdo#109271]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7939/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.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#45]: https://gitlab.freedesktop.org/drm/intel/issues/45 [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579 [i915#877]: https://gitlab.freedesktop.org/drm/intel/issues/877 Participating hosts (44 -> 44) ------------------------------ Additional (7): fi-hsw-peppy fi-glk-dsi fi-ivb-3770 fi-icl-u3 fi-bsw-kefka fi-skl-6600u fi-kbl-r Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bwr-2160 fi-ctg-p8600 fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5441 -> IGTPW_4152 CI-20190529: 20190529 CI_DRM_7939: cceb0c30a34af6ca96e35211ecdc5ca198d44e7e @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4152: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4152/index.html IGT_5441: 534ca091fe4ffed916752165bc5becd7ff56cd84 @ 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_4152/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
end of thread, other threads:[~2020-02-14 13:59 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-02-14 12:52 [igt-dev] [PATCH] [PATCH i-g-t] tests/i915/gem_ringfill:Added __for_each_physical_engine to utilize all available engines satyavat 2020-02-14 13:25 ` [igt-dev] ✗ GitLab.Pipeline: failure for " Patchwork 2020-02-14 13:37 ` [igt-dev] [PATCH] [PATCH i-g-t] " Chris Wilson 2020-02-14 13:43 ` Petri Latvala 2020-02-14 13:59 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox