* [igt-dev] [PATCH i-g-t] lib/chamelium: Ping the chamelium before use
@ 2018-07-28 9:30 Chris Wilson
2018-07-28 9:46 ` Chris Wilson
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Chris Wilson @ 2018-07-28 9:30 UTC (permalink / raw)
To: igt-dev
Check we can talk to the device before hitting any asserts.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
lib/igt_chamelium.c | 23 ++++++++++++++++++++++-
1 file changed, 22 insertions(+), 1 deletion(-)
diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c
index b8418e13e..15f9b870c 100644
--- a/lib/igt_chamelium.c
+++ b/lib/igt_chamelium.c
@@ -1520,6 +1520,23 @@ static bool chamelium_read_config(struct chamelium *chamelium, int drm_fd)
return chamelium_read_port_mappings(chamelium, drm_fd);
}
+static bool __chamelium_reset(struct chamelium *chamelium)
+{
+ xmlrpc_value *res;
+
+ /* Cleanup the last error, if any */
+ if (chamelium->env.fault_occurred) {
+ xmlrpc_env_clean(&chamelium->env);
+ xmlrpc_env_init(&chamelium->env);
+ }
+
+ xmlrpc_client_call2f_va(&chamelium->env, chamelium->client,
+ chamelium->url, "Reset", "()", &res);
+ xmlrpc_DECREF(res);
+
+ return !chamelium->env.fault_occurred;
+}
+
/**
* chamelium_reset:
* @chamelium: The Chamelium instance to use
@@ -1530,7 +1547,7 @@ static bool chamelium_read_config(struct chamelium *chamelium, int drm_fd)
void chamelium_reset(struct chamelium *chamelium)
{
igt_debug("Resetting the chamelium\n");
- xmlrpc_DECREF(chamelium_rpc(chamelium, NULL, "Reset", "()"));
+ igt_assert(__chamelium_reset(chamelium));
}
static void chamelium_exit_handler(int sig)
@@ -1582,6 +1599,10 @@ struct chamelium *chamelium_init(int drm_fd)
goto error;
}
+ /* Ping the device before use and reset it to defaults */
+ if (!__chamelium_reset(chamelium))
+ goto error;
+
if (!chamelium_read_config(chamelium, drm_fd))
goto error;
--
2.18.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t] lib/chamelium: Ping the chamelium before use
2018-07-28 9:30 [igt-dev] [PATCH i-g-t] lib/chamelium: Ping the chamelium before use Chris Wilson
@ 2018-07-28 9:46 ` Chris Wilson
2018-07-28 11:14 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/chamelium: Ping the chamelium before use (rev2) Patchwork
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Chris Wilson @ 2018-07-28 9:46 UTC (permalink / raw)
To: igt-dev
Check we can talk to the device before hitting any asserts.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
lib/igt_chamelium.c | 23 ++++++++++++++++++++++-
1 file changed, 22 insertions(+), 1 deletion(-)
diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c
index b8418e13e..d333d4c05 100644
--- a/lib/igt_chamelium.c
+++ b/lib/igt_chamelium.c
@@ -1520,6 +1520,23 @@ static bool chamelium_read_config(struct chamelium *chamelium, int drm_fd)
return chamelium_read_port_mappings(chamelium, drm_fd);
}
+static bool __chamelium_reset(struct chamelium *chamelium)
+{
+ xmlrpc_value *res;
+
+ /* Cleanup the last error, if any */
+ if (chamelium->env.fault_occurred) {
+ xmlrpc_env_clean(&chamelium->env);
+ xmlrpc_env_init(&chamelium->env);
+ }
+
+ xmlrpc_client_call2f(&chamelium->env, chamelium->client,
+ chamelium->url, "Reset", "()", &res);
+ xmlrpc_DECREF(res);
+
+ return !chamelium->env.fault_occurred;
+}
+
/**
* chamelium_reset:
* @chamelium: The Chamelium instance to use
@@ -1530,7 +1547,7 @@ static bool chamelium_read_config(struct chamelium *chamelium, int drm_fd)
void chamelium_reset(struct chamelium *chamelium)
{
igt_debug("Resetting the chamelium\n");
- xmlrpc_DECREF(chamelium_rpc(chamelium, NULL, "Reset", "()"));
+ igt_assert(__chamelium_reset(chamelium));
}
static void chamelium_exit_handler(int sig)
@@ -1582,6 +1599,10 @@ struct chamelium *chamelium_init(int drm_fd)
goto error;
}
+ /* Ping the device before use and reset it to defaults */
+ if (!__chamelium_reset(chamelium))
+ goto error;
+
if (!chamelium_read_config(chamelium, drm_fd))
goto error;
--
2.18.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for lib/chamelium: Ping the chamelium before use (rev2)
2018-07-28 9:30 [igt-dev] [PATCH i-g-t] lib/chamelium: Ping the chamelium before use Chris Wilson
2018-07-28 9:46 ` Chris Wilson
@ 2018-07-28 11:14 ` Patchwork
2018-07-28 11:16 ` [igt-dev] [PATCH i-g-t] lib/chamelium: Ping the chamelium before use Chris Wilson
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2018-07-28 11:14 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
== Series Details ==
Series: lib/chamelium: Ping the chamelium before use (rev2)
URL : https://patchwork.freedesktop.org/series/47382/
State : failure
== Summary ==
= CI Bug Log - changes from CI_DRM_4562 -> IGTPW_1667 =
== Summary - FAILURE ==
Serious unknown changes coming with IGTPW_1667 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_1667, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://patchwork.freedesktop.org/api/1.0/series/47382/revisions/2/mbox/
== Possible new issues ==
Here are the unknown changes that may have been introduced in IGTPW_1667:
=== IGT changes ===
==== Possible regressions ====
igt@kms_chamelium@common-hpd-after-suspend:
fi-whl-u: SKIP -> FAIL +8
fi-pnv-d510: SKIP -> FAIL +8
fi-kbl-7560u: SKIP -> FAIL +8
fi-elk-e7500: SKIP -> FAIL +8
fi-skl-guc: SKIP -> FAIL +8
igt@kms_chamelium@dp-crc-fast:
fi-kbl-7500u: PASS -> FAIL +2
fi-hsw-4770: SKIP -> FAIL +8
fi-blb-e6850: SKIP -> FAIL +8
fi-gdg-551: SKIP -> FAIL +8
fi-ilk-650: SKIP -> FAIL +8
fi-cfl-8700k: SKIP -> FAIL +8
igt@kms_chamelium@dp-edid-read:
fi-cfl-guc: SKIP -> FAIL +8
{fi-skl-iommu}: SKIP -> FAIL +8
fi-bdw-gvtdvm: SKIP -> FAIL +8
fi-skl-6700hq: SKIP -> FAIL +8
igt@kms_chamelium@dp-hpd-fast:
fi-cfl-s3: SKIP -> FAIL +8
fi-skl-6700k2: SKIP -> FAIL +4
fi-ivb-3770: SKIP -> FAIL +8
fi-byt-n2820: SKIP -> FAIL +8
fi-bxt-dsi: SKIP -> FAIL +8
igt@kms_chamelium@hdmi-crc-fast:
fi-skl-6700k2: PASS -> FAIL +3
fi-bsw-n3050: SKIP -> FAIL +8
fi-byt-j1900: SKIP -> FAIL +8
fi-kbl-x1275: SKIP -> FAIL +8
fi-snb-2600: SKIP -> FAIL +8
fi-skl-6770hq: SKIP -> FAIL +8
igt@kms_chamelium@hdmi-edid-read:
fi-hsw-peppy: SKIP -> FAIL +8
{fi-bdw-samus}: SKIP -> FAIL +8
fi-skl-gvtdvm: SKIP -> FAIL +8
fi-kbl-r: SKIP -> FAIL +8
fi-skl-6260u: SKIP -> FAIL +8
fi-bxt-j4205: SKIP -> FAIL +8
fi-kbl-7567u: SKIP -> FAIL +8
igt@kms_chamelium@hdmi-hpd-fast:
fi-glk-j4005: SKIP -> FAIL +8
fi-glk-dsi: SKIP -> FAIL +8
fi-snb-2520m: SKIP -> FAIL +8
{fi-bsw-kefka}: SKIP -> FAIL +8
fi-kbl-guc: SKIP -> FAIL +8
fi-cnl-psr: SKIP -> FAIL +8
igt@kms_chamelium@vga-edid-read:
fi-hsw-4770r: SKIP -> FAIL +8
fi-skl-6600u: SKIP -> FAIL +8
fi-bdw-5557u: SKIP -> FAIL +8
fi-bwr-2160: SKIP -> FAIL +8
fi-ivb-3520m: SKIP -> FAIL +8
igt@kms_chamelium@vga-hpd-fast:
fi-kbl-7500u: SKIP -> FAIL +4
{fi-cfl-8109u}: SKIP -> FAIL +8
==== Warnings ====
igt@kms_chamelium@common-hpd-after-suspend:
fi-kbl-7500u: DMESG-WARN (fdo#105079, fdo#102505) -> FAIL
== Known issues ==
Here are the changes found in IGTPW_1667 that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
fi-bxt-dsi: PASS -> INCOMPLETE (fdo#103927)
==== Possible fixes ====
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
fi-ivb-3520m: FAIL (fdo#103375) -> PASS +2
{fi-bdw-samus}: DMESG-WARN -> PASS
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
{fi-cfl-8109u}: DMESG-WARN (fdo#107345) -> PASS +1
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
{fi-cfl-8109u}: INCOMPLETE (fdo#106070) -> PASS
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
fdo#102505 https://bugs.freedesktop.org/show_bug.cgi?id=102505
fdo#103375 https://bugs.freedesktop.org/show_bug.cgi?id=103375
fdo#103927 https://bugs.freedesktop.org/show_bug.cgi?id=103927
fdo#105079 https://bugs.freedesktop.org/show_bug.cgi?id=105079
fdo#106070 https://bugs.freedesktop.org/show_bug.cgi?id=106070
fdo#107345 https://bugs.freedesktop.org/show_bug.cgi?id=107345
== Participating hosts (53 -> 45) ==
Missing (8): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-kbl-8809g fi-icl-u fi-byt-clapper
== Build changes ==
* IGT: IGT_4579 -> IGTPW_1667
CI_DRM_4562: 99bbd80f75cdcf28699ffd3c93a714ca4a89b962 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_1667: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1667/
IGT_4579: a21999477545c2aed1e6a80dc93f87368614c7e5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1667/issues.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t] lib/chamelium: Ping the chamelium before use
2018-07-28 9:30 [igt-dev] [PATCH i-g-t] lib/chamelium: Ping the chamelium before use Chris Wilson
2018-07-28 9:46 ` Chris Wilson
2018-07-28 11:14 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/chamelium: Ping the chamelium before use (rev2) Patchwork
@ 2018-07-28 11:16 ` Chris Wilson
2018-07-28 11:56 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/chamelium: Ping the chamelium before use (rev3) Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Chris Wilson @ 2018-07-28 11:16 UTC (permalink / raw)
To: igt-dev
Check we can talk to the device before hitting any asserts.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
lib/igt_chamelium.c | 26 +++++++++++++++++++++++++-
1 file changed, 25 insertions(+), 1 deletion(-)
diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c
index b8418e13e..fe5c4dac5 100644
--- a/lib/igt_chamelium.c
+++ b/lib/igt_chamelium.c
@@ -1520,6 +1520,26 @@ static bool chamelium_read_config(struct chamelium *chamelium, int drm_fd)
return chamelium_read_port_mappings(chamelium, drm_fd);
}
+static bool __chamelium_reset(struct chamelium *chamelium)
+{
+ xmlrpc_value *res;
+
+ /* Cleanup the last error, if any */
+ if (chamelium->env.fault_occurred) {
+ xmlrpc_env_clean(&chamelium->env);
+ xmlrpc_env_init(&chamelium->env);
+ }
+
+ xmlrpc_client_call2f(&chamelium->env, chamelium->client,
+ chamelium->url, "Reset", "()", &res);
+
+ if (chamelium->env.fault_occurred)
+ return false;
+
+ xmlrpc_DECREF(res);
+ return true;
+}
+
/**
* chamelium_reset:
* @chamelium: The Chamelium instance to use
@@ -1530,7 +1550,7 @@ static bool chamelium_read_config(struct chamelium *chamelium, int drm_fd)
void chamelium_reset(struct chamelium *chamelium)
{
igt_debug("Resetting the chamelium\n");
- xmlrpc_DECREF(chamelium_rpc(chamelium, NULL, "Reset", "()"));
+ igt_assert(__chamelium_reset(chamelium));
}
static void chamelium_exit_handler(int sig)
@@ -1582,6 +1602,10 @@ struct chamelium *chamelium_init(int drm_fd)
goto error;
}
+ /* Ping the device before use and reset it to defaults */
+ if (!__chamelium_reset(chamelium))
+ goto error;
+
if (!chamelium_read_config(chamelium, drm_fd))
goto error;
--
2.18.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for lib/chamelium: Ping the chamelium before use (rev3)
2018-07-28 9:30 [igt-dev] [PATCH i-g-t] lib/chamelium: Ping the chamelium before use Chris Wilson
` (2 preceding siblings ...)
2018-07-28 11:16 ` [igt-dev] [PATCH i-g-t] lib/chamelium: Ping the chamelium before use Chris Wilson
@ 2018-07-28 11:56 ` Patchwork
2018-07-28 13:48 ` [igt-dev] ✗ Fi.CI.IGT: failure for lib/chamelium: Ping the chamelium before use (rev2) Patchwork
2018-07-28 15:11 ` [igt-dev] ✓ Fi.CI.IGT: success for lib/chamelium: Ping the chamelium before use (rev3) Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2018-07-28 11:56 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
== Series Details ==
Series: lib/chamelium: Ping the chamelium before use (rev3)
URL : https://patchwork.freedesktop.org/series/47382/
State : success
== Summary ==
= CI Bug Log - changes from CI_DRM_4562 -> IGTPW_1668 =
== Summary - WARNING ==
Minor unknown changes coming with IGTPW_1668 need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_1668, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://patchwork.freedesktop.org/api/1.0/series/47382/revisions/3/mbox/
== Possible new issues ==
Here are the unknown changes that may have been introduced in IGTPW_1668:
=== IGT changes ===
==== Warnings ====
igt@kms_chamelium@dp-crc-fast:
fi-kbl-7500u: PASS -> SKIP +2
igt@kms_chamelium@hdmi-crc-fast:
fi-skl-6700k2: PASS -> SKIP +3
== Known issues ==
Here are the changes found in IGTPW_1668 that come from known issues:
=== IGT changes ===
==== Possible fixes ====
igt@kms_chamelium@common-hpd-after-suspend:
fi-kbl-7500u: DMESG-WARN (fdo#105079, fdo#102505) -> SKIP
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
fi-ivb-3520m: FAIL (fdo#103375) -> PASS +2
{fi-bdw-samus}: DMESG-WARN -> PASS
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
{fi-cfl-8109u}: DMESG-WARN (fdo#107345) -> PASS +1
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
{fi-cfl-8109u}: INCOMPLETE (fdo#106070) -> PASS
==== Warnings ====
{igt@kms_psr@primary_page_flip}:
fi-cnl-psr: DMESG-WARN (fdo#107372) -> DMESG-FAIL (fdo#107372)
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
fdo#102505 https://bugs.freedesktop.org/show_bug.cgi?id=102505
fdo#103375 https://bugs.freedesktop.org/show_bug.cgi?id=103375
fdo#105079 https://bugs.freedesktop.org/show_bug.cgi?id=105079
fdo#106070 https://bugs.freedesktop.org/show_bug.cgi?id=106070
fdo#107345 https://bugs.freedesktop.org/show_bug.cgi?id=107345
fdo#107372 https://bugs.freedesktop.org/show_bug.cgi?id=107372
== Participating hosts (53 -> 45) ==
Missing (8): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-kbl-8809g fi-icl-u fi-byt-clapper
== Build changes ==
* IGT: IGT_4579 -> IGTPW_1668
CI_DRM_4562: 99bbd80f75cdcf28699ffd3c93a714ca4a89b962 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_1668: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1668/
IGT_4579: a21999477545c2aed1e6a80dc93f87368614c7e5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1668/issues.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for lib/chamelium: Ping the chamelium before use (rev2)
2018-07-28 9:30 [igt-dev] [PATCH i-g-t] lib/chamelium: Ping the chamelium before use Chris Wilson
` (3 preceding siblings ...)
2018-07-28 11:56 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/chamelium: Ping the chamelium before use (rev3) Patchwork
@ 2018-07-28 13:48 ` Patchwork
2018-07-28 15:11 ` [igt-dev] ✓ Fi.CI.IGT: success for lib/chamelium: Ping the chamelium before use (rev3) Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2018-07-28 13:48 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
== Series Details ==
Series: lib/chamelium: Ping the chamelium before use (rev2)
URL : https://patchwork.freedesktop.org/series/47382/
State : failure
== Summary ==
= CI Bug Log - changes from IGT_4579_full -> IGTPW_1667_full =
== Summary - FAILURE ==
Serious unknown changes coming with IGTPW_1667_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_1667_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://patchwork.freedesktop.org/api/1.0/series/47382/revisions/2/mbox/
== Possible new issues ==
Here are the unknown changes that may have been introduced in IGTPW_1667_full:
=== IGT changes ===
==== Possible regressions ====
igt@kms_chamelium@common-hpd-after-suspend:
shard-hsw: SKIP -> FAIL +28
igt@kms_chamelium@dp-hpd-storm-disable:
shard-glk: SKIP -> FAIL +27
igt@kms_chamelium@hdmi-crc-fast:
shard-kbl: SKIP -> FAIL +28
shard-snb: SKIP -> FAIL +28
igt@kms_chamelium@hdmi-edid-change-during-suspend:
shard-apl: SKIP -> FAIL +28
== Known issues ==
Here are the changes found in IGTPW_1667_full that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@kms_available_modes_crc@available_mode_test_crc:
shard-snb: PASS -> FAIL (fdo#106641)
igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
shard-glk: PASS -> FAIL (fdo#105454)
igt@kms_cursor_legacy@all-pipes-torture-bo:
shard-kbl: PASS -> DMESG-WARN (fdo#107122)
shard-snb: PASS -> DMESG-WARN (fdo#107122)
shard-hsw: PASS -> DMESG-WARN (fdo#107122)
igt@kms_cursor_legacy@pipe-b-forked-move:
shard-apl: PASS -> DMESG-WARN (fdo#107122)
igt@kms_flip@2x-plain-flip-fb-recreate:
shard-glk: PASS -> FAIL (fdo#100368)
igt@kms_flip@flip-vs-expired-vblank:
shard-glk: PASS -> FAIL (fdo#102887)
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt:
shard-snb: PASS -> INCOMPLETE (fdo#105411)
igt@kms_rotation_crc@primary-rotation-180:
shard-snb: PASS -> FAIL (fdo#103925)
igt@pm_rpm@dpms-mode-unset-lpsp:
shard-glk: SKIP -> FAIL (fdo#106539)
shard-apl: SKIP -> FAIL (fdo#106539)
shard-kbl: SKIP -> FAIL (fdo#106539)
shard-hsw: SKIP -> FAIL (fdo#106539)
igt@pm_rpm@fences-dpms:
shard-kbl: PASS -> FAIL (fdo#106539)
shard-hsw: PASS -> FAIL (fdo#106539)
shard-glk: PASS -> FAIL (fdo#106539)
shard-apl: PASS -> FAIL (fdo#106539)
==== Possible fixes ====
igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
shard-glk: FAIL (fdo#105363) -> PASS
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
shard-snb: DMESG-WARN -> PASS
igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc:
shard-snb: INCOMPLETE (fdo#105411) -> SKIP
igt@kms_plane_multiple@atomic-pipe-a-tiling-x:
shard-snb: FAIL (fdo#103166) -> PASS
igt@perf@blocking:
shard-hsw: FAIL (fdo#102252) -> PASS
igt@pm_rpm@gem-execbuf:
shard-glk: FAIL (fdo#106539) -> PASS +4
shard-apl: FAIL (fdo#106539) -> PASS
shard-kbl: FAIL (fdo#106539) -> PASS
shard-hsw: FAIL (fdo#106539) -> PASS
igt@pm_rpm@modeset-lpsp:
shard-glk: FAIL (fdo#106539) -> SKIP +1
fdo#100368 https://bugs.freedesktop.org/show_bug.cgi?id=100368
fdo#102252 https://bugs.freedesktop.org/show_bug.cgi?id=102252
fdo#102887 https://bugs.freedesktop.org/show_bug.cgi?id=102887
fdo#103166 https://bugs.freedesktop.org/show_bug.cgi?id=103166
fdo#103925 https://bugs.freedesktop.org/show_bug.cgi?id=103925
fdo#105363 https://bugs.freedesktop.org/show_bug.cgi?id=105363
fdo#105411 https://bugs.freedesktop.org/show_bug.cgi?id=105411
fdo#105454 https://bugs.freedesktop.org/show_bug.cgi?id=105454
fdo#106539 https://bugs.freedesktop.org/show_bug.cgi?id=106539
fdo#106641 https://bugs.freedesktop.org/show_bug.cgi?id=106641
fdo#107122 https://bugs.freedesktop.org/show_bug.cgi?id=107122
== Participating hosts (5 -> 5) ==
No changes in participating hosts
== Build changes ==
* IGT: IGT_4579 -> IGTPW_1667
* Linux: CI_DRM_4560 -> CI_DRM_4562
CI_DRM_4560: b73c0ddef408783e556741ac9d3679b7d153e3e1 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_4562: 99bbd80f75cdcf28699ffd3c93a714ca4a89b962 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_1667: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1667/
IGT_4579: a21999477545c2aed1e6a80dc93f87368614c7e5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1667/shards.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for lib/chamelium: Ping the chamelium before use (rev3)
2018-07-28 9:30 [igt-dev] [PATCH i-g-t] lib/chamelium: Ping the chamelium before use Chris Wilson
` (4 preceding siblings ...)
2018-07-28 13:48 ` [igt-dev] ✗ Fi.CI.IGT: failure for lib/chamelium: Ping the chamelium before use (rev2) Patchwork
@ 2018-07-28 15:11 ` Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2018-07-28 15:11 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
== Series Details ==
Series: lib/chamelium: Ping the chamelium before use (rev3)
URL : https://patchwork.freedesktop.org/series/47382/
State : success
== Summary ==
= CI Bug Log - changes from IGT_4579_full -> IGTPW_1668_full =
== Summary - SUCCESS ==
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/47382/revisions/3/mbox/
== Known issues ==
Here are the changes found in IGTPW_1668_full that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@drv_suspend@shrink:
shard-apl: PASS -> FAIL (fdo#106886)
igt@gem_exec_schedule@pi-ringfull-blt:
shard-snb: SKIP -> INCOMPLETE (fdo#105411)
igt@gem_ppgtt@blt-vs-render-ctxn:
shard-kbl: PASS -> INCOMPLETE (fdo#103665, fdo#106023)
igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
shard-glk: PASS -> FAIL (fdo#105454, fdo#106509)
igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
shard-glk: PASS -> FAIL (fdo#100368)
igt@kms_rotation_crc@primary-rotation-180:
shard-snb: PASS -> FAIL (fdo#103925)
igt@perf@polling:
shard-hsw: PASS -> FAIL (fdo#102252)
igt@testdisplay:
shard-glk: PASS -> INCOMPLETE (fdo#103359, fdo#107093, k.org#198133)
==== Possible fixes ====
igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
shard-glk: FAIL (fdo#105363) -> PASS
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
shard-snb: DMESG-WARN -> PASS
igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc:
shard-snb: INCOMPLETE (fdo#105411) -> SKIP
igt@kms_setmode@basic:
shard-apl: FAIL (fdo#99912) -> PASS
igt@perf@blocking:
shard-hsw: FAIL (fdo#102252) -> PASS
igt@pm_rpm@gem-execbuf:
shard-glk: FAIL (fdo#106539) -> PASS +4
shard-apl: FAIL (fdo#106539) -> PASS
shard-kbl: FAIL (fdo#106539) -> PASS
shard-hsw: FAIL (fdo#106539) -> PASS
igt@pm_rpm@modeset-lpsp:
shard-glk: FAIL (fdo#106539) -> SKIP +1
fdo#100368 https://bugs.freedesktop.org/show_bug.cgi?id=100368
fdo#102252 https://bugs.freedesktop.org/show_bug.cgi?id=102252
fdo#103359 https://bugs.freedesktop.org/show_bug.cgi?id=103359
fdo#103665 https://bugs.freedesktop.org/show_bug.cgi?id=103665
fdo#103925 https://bugs.freedesktop.org/show_bug.cgi?id=103925
fdo#105363 https://bugs.freedesktop.org/show_bug.cgi?id=105363
fdo#105411 https://bugs.freedesktop.org/show_bug.cgi?id=105411
fdo#105454 https://bugs.freedesktop.org/show_bug.cgi?id=105454
fdo#106023 https://bugs.freedesktop.org/show_bug.cgi?id=106023
fdo#106509 https://bugs.freedesktop.org/show_bug.cgi?id=106509
fdo#106539 https://bugs.freedesktop.org/show_bug.cgi?id=106539
fdo#106886 https://bugs.freedesktop.org/show_bug.cgi?id=106886
fdo#107093 https://bugs.freedesktop.org/show_bug.cgi?id=107093
fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912
k.org#198133 https://bugzilla.kernel.org/show_bug.cgi?id=198133
== Participating hosts (5 -> 5) ==
No changes in participating hosts
== Build changes ==
* IGT: IGT_4579 -> IGTPW_1668
* Linux: CI_DRM_4560 -> CI_DRM_4562
CI_DRM_4560: b73c0ddef408783e556741ac9d3679b7d153e3e1 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_4562: 99bbd80f75cdcf28699ffd3c93a714ca4a89b962 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_1668: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1668/
IGT_4579: a21999477545c2aed1e6a80dc93f87368614c7e5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1668/shards.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2018-07-28 15:11 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-28 9:30 [igt-dev] [PATCH i-g-t] lib/chamelium: Ping the chamelium before use Chris Wilson
2018-07-28 9:46 ` Chris Wilson
2018-07-28 11:14 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/chamelium: Ping the chamelium before use (rev2) Patchwork
2018-07-28 11:16 ` [igt-dev] [PATCH i-g-t] lib/chamelium: Ping the chamelium before use Chris Wilson
2018-07-28 11:56 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/chamelium: Ping the chamelium before use (rev3) Patchwork
2018-07-28 13:48 ` [igt-dev] ✗ Fi.CI.IGT: failure for lib/chamelium: Ping the chamelium before use (rev2) Patchwork
2018-07-28 15:11 ` [igt-dev] ✓ Fi.CI.IGT: success for lib/chamelium: Ping the chamelium before use (rev3) Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).