* [igt-dev] [PATCH i-g-t] tests/kms_chamelium: Wait for chamelium being reachable after a suspend
@ 2019-08-16 8:35 Arkadiusz Hiler
2019-08-16 8:46 ` Petri Latvala
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Arkadiusz Hiler @ 2019-08-16 8:35 UTC (permalink / raw)
To: igt-dev
Getting network back after waking up from suspend takes some time.
If it's not quick enough, it may cause any following chamelium_rpc
to fail.
This includes the chamelium port reset in exit handler:
igt_chamelium-CRITICAL: Test assertion failure function chamelium_rpc,
file ../lib/igt_chamelium.c:349:
igt_chamelium-CRITICAL: Failed assertion: !chamelium->env.fault_occurred
igt_chamelium-CRITICAL: Last errno: 113, No route to host
igt_chamelium-CRITICAL: Chamelium RPC call failed: libcurl failed to execute
the HTTP POST transaction, explaining:
Failed to connect to 192.168.1.224 port 9992: No route to host
Stack trace:
#0 ../lib/igt_core.c:1674 __igt_fail_assert()
#1 [chamelium_rpc+0x1ea]
#2 ../lib/igt_chamelium.c:2274 chamelium_reset()
#3 ../lib/igt_chamelium.c:2361 chamelium_deinit()
#4 ../lib/igt_core.c:2124 call_exit_handlers()
So let's wait for Chamelium to be reachable after each suspend_autoresume.
Cc: Simon Ser <simon.ser@intel.com>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=109380
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
---
lib/igt_chamelium.c | 21 +++++++++++++++++++++
lib/igt_chamelium.h | 1 +
tests/kms_chamelium.c | 4 +++-
3 files changed, 25 insertions(+), 1 deletion(-)
diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c
index 1c0e1b39..bb1420c3 100644
--- a/lib/igt_chamelium.c
+++ b/lib/igt_chamelium.c
@@ -351,6 +351,27 @@ static xmlrpc_value *chamelium_rpc(struct chamelium *chamelium,
return res;
}
+static bool __chamelium_is_reachable(struct chamelium *chamelium)
+{
+ /* GetSupportedInputs does not require a port and is harmless */
+ xmlrpc_DECREF(__chamelium_rpc(chamelium, NULL, "GetSupportedInputs", "()"));
+
+ if (chamelium->env.fault_occurred)
+ igt_debug("Chamelium RPC call failed: %s\n",
+ chamelium->env.fault_string);
+
+ return !chamelium->env.fault_occurred;
+}
+
+void chamelium_wait_reachable(struct chamelium *chamelium, int timeout)
+{
+ bool chamelium_online = igt_wait(__chamelium_is_reachable(chamelium),
+ timeout * 1000, 100);
+
+ igt_assert_f(chamelium_online,
+ "Couldn't connect to Chamelium for %ds", timeout);
+}
+
/**
* chamelium_plug:
* @chamelium: The Chamelium instance to use
diff --git a/lib/igt_chamelium.h b/lib/igt_chamelium.h
index 1cc5e2d8..08705a9d 100644
--- a/lib/igt_chamelium.h
+++ b/lib/igt_chamelium.h
@@ -112,6 +112,7 @@ drmModeConnector *chamelium_port_get_connector(struct chamelium *chamelium,
bool reprobe);
const char *chamelium_port_get_name(struct chamelium_port *port);
+void chamelium_wait_reachable(struct chamelium *chamelium, int timeout);
void chamelium_plug(struct chamelium *chamelium, struct chamelium_port *port);
void chamelium_unplug(struct chamelium *chamelium, struct chamelium_port *port);
bool chamelium_is_plugged(struct chamelium *chamelium,
diff --git a/tests/kms_chamelium.c b/tests/kms_chamelium.c
index 0cf1bfbd..357d9f35 100644
--- a/tests/kms_chamelium.c
+++ b/tests/kms_chamelium.c
@@ -57,6 +57,7 @@ typedef struct {
} data_t;
#define HOTPLUG_TIMEOUT 20 /* seconds */
+#define ONLINE_TIMEOUT 10 /* seconds */
#define HPD_STORM_PULSE_INTERVAL_DP 100 /* ms */
#define HPD_STORM_PULSE_INTERVAL_HDMI 200 /* ms */
@@ -368,6 +369,7 @@ try_suspend_resume_hpd(data_t *data, struct chamelium_port *port,
igt_system_suspend_autoresume(state, test);
igt_assert(wait_for_hotplug(mon, &timeout));
+ chamelium_wait_reachable(data->chamelium, ONLINE_TIMEOUT);
if (port) {
igt_assert_eq(reprobe_connector(data, port), target_state);
@@ -473,8 +475,8 @@ test_suspend_resume_edid_change(data_t *data, struct chamelium_port *port,
igt_flush_hotplugs(mon);
igt_system_suspend_autoresume(state, test);
-
igt_assert(igt_hotplug_detected(mon, HOTPLUG_TIMEOUT));
+ chamelium_wait_reachable(data->chamelium, ONLINE_TIMEOUT);
get_connectors_link_status_failed(data, link_status_failed[1]);
--
2.21.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [igt-dev] [PATCH i-g-t] tests/kms_chamelium: Wait for chamelium being reachable after a suspend 2019-08-16 8:35 [igt-dev] [PATCH i-g-t] tests/kms_chamelium: Wait for chamelium being reachable after a suspend Arkadiusz Hiler @ 2019-08-16 8:46 ` Petri Latvala 2019-08-16 9:08 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork ` (4 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Petri Latvala @ 2019-08-16 8:46 UTC (permalink / raw) To: Arkadiusz Hiler; +Cc: igt-dev On Fri, Aug 16, 2019 at 11:35:23AM +0300, Arkadiusz Hiler wrote: > Getting network back after waking up from suspend takes some time. > If it's not quick enough, it may cause any following chamelium_rpc > to fail. > > This includes the chamelium port reset in exit handler: > > igt_chamelium-CRITICAL: Test assertion failure function chamelium_rpc, > file ../lib/igt_chamelium.c:349: > igt_chamelium-CRITICAL: Failed assertion: !chamelium->env.fault_occurred > igt_chamelium-CRITICAL: Last errno: 113, No route to host > igt_chamelium-CRITICAL: Chamelium RPC call failed: libcurl failed to execute > the HTTP POST transaction, explaining: > Failed to connect to 192.168.1.224 port 9992: No route to host > > Stack trace: > #0 ../lib/igt_core.c:1674 __igt_fail_assert() > #1 [chamelium_rpc+0x1ea] > #2 ../lib/igt_chamelium.c:2274 chamelium_reset() > #3 ../lib/igt_chamelium.c:2361 chamelium_deinit() > #4 ../lib/igt_core.c:2124 call_exit_handlers() > > So let's wait for Chamelium to be reachable after each suspend_autoresume. > > Cc: Simon Ser <simon.ser@intel.com> > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=109380 > Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com> > --- > lib/igt_chamelium.c | 21 +++++++++++++++++++++ > lib/igt_chamelium.h | 1 + > tests/kms_chamelium.c | 4 +++- > 3 files changed, 25 insertions(+), 1 deletion(-) > > diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c > index 1c0e1b39..bb1420c3 100644 > --- a/lib/igt_chamelium.c > +++ b/lib/igt_chamelium.c > @@ -351,6 +351,27 @@ static xmlrpc_value *chamelium_rpc(struct chamelium *chamelium, > return res; > } > > +static bool __chamelium_is_reachable(struct chamelium *chamelium) > +{ > + /* GetSupportedInputs does not require a port and is harmless */ > + xmlrpc_DECREF(__chamelium_rpc(chamelium, NULL, "GetSupportedInputs", "()")); > + > + if (chamelium->env.fault_occurred) > + igt_debug("Chamelium RPC call failed: %s\n", > + chamelium->env.fault_string); > + > + return !chamelium->env.fault_occurred; > +} > + > +void chamelium_wait_reachable(struct chamelium *chamelium, int timeout) > +{ > + bool chamelium_online = igt_wait(__chamelium_is_reachable(chamelium), > + timeout * 1000, 100); > + > + igt_assert_f(chamelium_online, > + "Couldn't connect to Chamelium for %ds", timeout); > +} > + > /** > * chamelium_plug: > * @chamelium: The Chamelium instance to use > diff --git a/lib/igt_chamelium.h b/lib/igt_chamelium.h > index 1cc5e2d8..08705a9d 100644 > --- a/lib/igt_chamelium.h > +++ b/lib/igt_chamelium.h > @@ -112,6 +112,7 @@ drmModeConnector *chamelium_port_get_connector(struct chamelium *chamelium, > bool reprobe); > const char *chamelium_port_get_name(struct chamelium_port *port); > > +void chamelium_wait_reachable(struct chamelium *chamelium, int timeout); > void chamelium_plug(struct chamelium *chamelium, struct chamelium_port *port); > void chamelium_unplug(struct chamelium *chamelium, struct chamelium_port *port); > bool chamelium_is_plugged(struct chamelium *chamelium, > diff --git a/tests/kms_chamelium.c b/tests/kms_chamelium.c > index 0cf1bfbd..357d9f35 100644 > --- a/tests/kms_chamelium.c > +++ b/tests/kms_chamelium.c > @@ -57,6 +57,7 @@ typedef struct { > } data_t; > > #define HOTPLUG_TIMEOUT 20 /* seconds */ > +#define ONLINE_TIMEOUT 10 /* seconds */ When I was testing abort-on-network-down stuff, 10 seconds wasn't enough, worst case was 17 seconds iirc. -- Petri Latvala _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_chamelium: Wait for chamelium being reachable after a suspend 2019-08-16 8:35 [igt-dev] [PATCH i-g-t] tests/kms_chamelium: Wait for chamelium being reachable after a suspend Arkadiusz Hiler 2019-08-16 8:46 ` Petri Latvala @ 2019-08-16 9:08 ` Patchwork 2019-08-16 14:28 ` Ser, Simon 2019-08-16 19:53 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2019-08-16 9:08 UTC (permalink / raw) To: Arkadiusz Hiler; +Cc: igt-dev == Series Details == Series: tests/kms_chamelium: Wait for chamelium being reachable after a suspend URL : https://patchwork.freedesktop.org/series/65292/ State : success == Summary == CI Bug Log - changes from CI_DRM_6715 -> IGTPW_3354 ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_3354 need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_3354, 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/65292/revisions/1/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3354: ### IGT changes ### #### Warnings #### * igt@kms_chamelium@common-hpd-after-suspend: - fi-kbl-7567u: [WARN][1] ([fdo#109380]) -> [CRASH][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-kbl-7567u/igt@kms_chamelium@common-hpd-after-suspend.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-kbl-7567u/igt@kms_chamelium@common-hpd-after-suspend.html Known issues ------------ Here are the changes found in IGTPW_3354 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ringfill@basic-default: - fi-icl-u3: [PASS][3] -> [DMESG-WARN][4] ([fdo#107724]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-icl-u3/igt@gem_ringfill@basic-default.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-icl-u3/igt@gem_ringfill@basic-default.html * igt@i915_module_load@reload: - fi-blb-e6850: [PASS][5] -> [INCOMPLETE][6] ([fdo#107718]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-blb-e6850/igt@i915_module_load@reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-blb-e6850/igt@i915_module_load@reload.html * igt@kms_busy@basic-flip-a: - fi-kbl-7567u: [PASS][7] -> [SKIP][8] ([fdo#109271] / [fdo#109278]) +2 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-kbl-7567u/igt@kms_busy@basic-flip-a.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-kbl-7567u/igt@kms_busy@basic-flip-a.html * igt@kms_chamelium@dp-edid-read: - fi-icl-u2: [PASS][9] -> [FAIL][10] ([fdo#106766]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-icl-u2/igt@kms_chamelium@dp-edid-read.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-icl-u2/igt@kms_chamelium@dp-edid-read.html #### Possible fixes #### * igt@gem_exec_reloc@basic-gtt-read-noreloc: - fi-icl-u3: [DMESG-WARN][11] ([fdo#107724]) -> [PASS][12] +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-icl-u3/igt@gem_exec_reloc@basic-gtt-read-noreloc.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-icl-u3/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@i915_module_load@reload: - fi-icl-u3: [DMESG-WARN][13] ([fdo#106107]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-icl-u3/igt@i915_module_load@reload.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-icl-u3/igt@i915_module_load@reload.html * igt@i915_selftest@live_active: - fi-bsw-n3050: [DMESG-WARN][15] ([fdo#111373]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-bsw-n3050/igt@i915_selftest@live_active.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-bsw-n3050/igt@i915_selftest@live_active.html * igt@kms_frontbuffer_tracking@basic: - fi-icl-u2: [FAIL][17] ([fdo#103167]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@read-crc-pipe-c: - fi-kbl-7567u: [SKIP][19] ([fdo#109271]) -> [PASS][20] +23 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-kbl-7567u/igt@kms_pipe_crc_basic@read-crc-pipe-c.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-kbl-7567u/igt@kms_pipe_crc_basic@read-crc-pipe-c.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107 [fdo#106766]: https://bugs.freedesktop.org/show_bug.cgi?id=106766 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109380]: https://bugs.freedesktop.org/show_bug.cgi?id=109380 [fdo#110595]: https://bugs.freedesktop.org/show_bug.cgi?id=110595 [fdo#111373]: https://bugs.freedesktop.org/show_bug.cgi?id=111373 [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407 Participating hosts (51 -> 44) ------------------------------ Missing (7): fi-byt-squawks fi-bsw-cyan fi-byt-clapper fi-gdg-551 fi-icl-y fi-icl-dsi fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5138 -> IGTPW_3354 CI-20190529: 20190529 CI_DRM_6715: 566f8f36249da60874943886a753a2e2a00ae992 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3354: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/ IGT_5138: b9abe0bf6c478c4f6cac56bff286d6926ad8c0ab @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_chamelium: Wait for chamelium being reachable after a suspend 2019-08-16 9:08 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2019-08-16 14:28 ` Ser, Simon 0 siblings, 0 replies; 9+ messages in thread From: Ser, Simon @ 2019-08-16 14:28 UTC (permalink / raw) To: Hiler, Arkadiusz, igt-dev@lists.freedesktop.org On Fri, 2019-08-16 at 09:08 +0000, Patchwork wrote: > == Series Details == > > Series: tests/kms_chamelium: Wait for chamelium being reachable after a suspend > URL : https://patchwork.freedesktop.org/series/65292/ > State : success > > == Summary == > > CI Bug Log - changes from CI_DRM_6715 -> IGTPW_3354 > ==================================================== > > Summary > ------- > > **WARNING** > > Minor unknown changes coming with IGTPW_3354 need to be verified > manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_3354, 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/65292/revisions/1/mbox/ > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_3354: > > ### IGT changes ### > > #### Warnings #### > > * igt@kms_chamelium@common-hpd-after-suspend: > - fi-kbl-7567u: [WARN][1] ([fdo#109380]) -> [CRASH][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-kbl-7567u/igt@kms_chamelium@common-hpd-after-suspend.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-kbl-7567u/igt@kms_chamelium@common-hpd-after-suspend.html CI successfully caught a bug in this patch, see below. When __chamelium_rpc fails, it returns NULL. We should only call xmlrpc_DECREF if the call succeeded. Starting subtest: common-hpd-after-suspend Received signal SIGSEGV. Stack trace: #0 [fatal_sig_handler+0xd6] #1 [killpg+0x40] #2 [xmlrpc_DECREF+0x9] #3 [chamelium_wait_reachable+0x6d] #4 [try_suspend_resume_hpd.constprop.42+0x15e] #5 [test_suspend_resume_hpd_common.constprop.40+0xa2] #6 [__real_main2553+0x12f5] #7 [main+0x27] #8 [__libc_start_main+0xe7] #9 [_start+0x2a] Subtest common-hpd-after-suspend: CRASH (13.155s) > > Known issues > ------------ > > Here are the changes found in IGTPW_3354 that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@gem_ringfill@basic-default: > - fi-icl-u3: [PASS][3] -> [DMESG-WARN][4] ([fdo#107724]) > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-icl-u3/igt@gem_ringfill@basic-default.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-icl-u3/igt@gem_ringfill@basic-default.html > > * igt@i915_module_load@reload: > - fi-blb-e6850: [PASS][5] -> [INCOMPLETE][6] ([fdo#107718]) > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-blb-e6850/igt@i915_module_load@reload.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-blb-e6850/igt@i915_module_load@reload.html > > * igt@kms_busy@basic-flip-a: > - fi-kbl-7567u: [PASS][7] -> [SKIP][8] ([fdo#109271] / [fdo#109278]) +2 similar issues > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-kbl-7567u/igt@kms_busy@basic-flip-a.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-kbl-7567u/igt@kms_busy@basic-flip-a.html > > * igt@kms_chamelium@dp-edid-read: > - fi-icl-u2: [PASS][9] -> [FAIL][10] ([fdo#106766]) > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-icl-u2/igt@kms_chamelium@dp-edid-read.html > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-icl-u2/igt@kms_chamelium@dp-edid-read.html > > > #### Possible fixes #### > > * igt@gem_exec_reloc@basic-gtt-read-noreloc: > - fi-icl-u3: [DMESG-WARN][11] ([fdo#107724]) -> [PASS][12] +1 similar issue > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-icl-u3/igt@gem_exec_reloc@basic-gtt-read-noreloc.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-icl-u3/igt@gem_exec_reloc@basic-gtt-read-noreloc.html > > * igt@i915_module_load@reload: > - fi-icl-u3: [DMESG-WARN][13] ([fdo#106107]) -> [PASS][14] > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-icl-u3/igt@i915_module_load@reload.html > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-icl-u3/igt@i915_module_load@reload.html > > * igt@i915_selftest@live_active: > - fi-bsw-n3050: [DMESG-WARN][15] ([fdo#111373]) -> [PASS][16] > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-bsw-n3050/igt@i915_selftest@live_active.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-bsw-n3050/igt@i915_selftest@live_active.html > > * igt@kms_frontbuffer_tracking@basic: > - fi-icl-u2: [FAIL][17] ([fdo#103167]) -> [PASS][18] > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html > > * igt@kms_pipe_crc_basic@read-crc-pipe-c: > - fi-kbl-7567u: [SKIP][19] ([fdo#109271]) -> [PASS][20] +23 similar issues > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/fi-kbl-7567u/igt@kms_pipe_crc_basic@read-crc-pipe-c.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/fi-kbl-7567u/igt@kms_pipe_crc_basic@read-crc-pipe-c.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 > [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107 > [fdo#106766]: https://bugs.freedesktop.org/show_bug.cgi?id=106766 > [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 > [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 > [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 > [fdo#109380]: https://bugs.freedesktop.org/show_bug.cgi?id=109380 > [fdo#110595]: https://bugs.freedesktop.org/show_bug.cgi?id=110595 > [fdo#111373]: https://bugs.freedesktop.org/show_bug.cgi?id=111373 > [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407 > > > Participating hosts (51 -> 44) > ------------------------------ > > Missing (7): fi-byt-squawks fi-bsw-cyan fi-byt-clapper fi-gdg-551 fi-icl-y fi-icl-dsi fi-bdw-samus > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_5138 -> IGTPW_3354 > > CI-20190529: 20190529 > CI_DRM_6715: 566f8f36249da60874943886a753a2e2a00ae992 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_3354: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/ > IGT_5138: b9abe0bf6c478c4f6cac56bff286d6926ad8c0ab @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/ > _______________________________________________ > 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] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_chamelium: Wait for chamelium being reachable after a suspend 2019-08-16 8:35 [igt-dev] [PATCH i-g-t] tests/kms_chamelium: Wait for chamelium being reachable after a suspend Arkadiusz Hiler 2019-08-16 8:46 ` Petri Latvala 2019-08-16 9:08 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2019-08-16 19:53 ` Patchwork 2019-08-19 7:07 ` [igt-dev] [PATCH v2 i-g-t] " Arkadiusz Hiler ` (2 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2019-08-16 19:53 UTC (permalink / raw) To: Arkadiusz Hiler; +Cc: igt-dev == Series Details == Series: tests/kms_chamelium: Wait for chamelium being reachable after a suspend URL : https://patchwork.freedesktop.org/series/65292/ State : success == Summary == CI Bug Log - changes from CI_DRM_6715_full -> IGTPW_3354_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/65292/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_3354_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_switch@legacy-bsd2-heavy: - shard-iclb: [PASS][1] -> [SKIP][2] ([fdo#109276]) +16 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-iclb1/igt@gem_ctx_switch@legacy-bsd2-heavy.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-iclb6/igt@gem_ctx_switch@legacy-bsd2-heavy.html * igt@gem_exec_create@madvise: - shard-glk: [PASS][3] -> [INCOMPLETE][4] ([fdo#103359] / [k.org#198133]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-glk8/igt@gem_exec_create@madvise.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-glk3/igt@gem_exec_create@madvise.html * igt@gem_exec_schedule@preemptive-hang-bsd: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#111325]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-iclb3/igt@gem_exec_schedule@preemptive-hang-bsd.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-snb: [PASS][7] -> [SKIP][8] ([fdo#109271]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-snb5/igt@i915_pm_rc6_residency@rc6-accuracy.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-snb4/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [PASS][9] -> [DMESG-WARN][10] ([fdo#108566]) +3 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-apl1/igt@i915_suspend@fence-restore-tiled2untiled.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-apl1/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_cursor_crc@pipe-b-cursor-256x85-onscreen: - shard-apl: [PASS][11] -> [FAIL][12] ([fdo#103232]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-256x85-onscreen.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-apl6/igt@kms_cursor_crc@pipe-b-cursor-256x85-onscreen.html - shard-kbl: [PASS][13] -> [FAIL][14] ([fdo#103232]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-256x85-onscreen.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-256x85-onscreen.html * igt@kms_flip@flip-vs-suspend: - shard-hsw: [PASS][15] -> [INCOMPLETE][16] ([fdo#103540]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-hsw5/igt@kms_flip@flip-vs-suspend.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-hsw2/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-iclb: [PASS][17] -> [FAIL][18] ([fdo#103167]) +6 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [PASS][19] -> [SKIP][20] ([fdo#109441]) +3 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-iclb2/igt@kms_psr@psr2_no_drrs.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-iclb1/igt@kms_psr@psr2_no_drrs.html * igt@kms_vblank@pipe-c-query-forked-hang: - shard-apl: [PASS][21] -> [INCOMPLETE][22] ([fdo#103927]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-apl4/igt@kms_vblank@pipe-c-query-forked-hang.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-apl5/igt@kms_vblank@pipe-c-query-forked-hang.html #### Possible fixes #### * igt@gem_ctx_shared@exec-single-timeline-bsd: - shard-iclb: [SKIP][23] ([fdo#110841]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-iclb2/igt@gem_ctx_shared@exec-single-timeline-bsd.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-iclb5/igt@gem_ctx_shared@exec-single-timeline-bsd.html * igt@gem_exec_balancer@smoke: - shard-iclb: [SKIP][25] ([fdo#110854]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-iclb8/igt@gem_exec_balancer@smoke.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-iclb2/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@in-order-bsd: - shard-iclb: [SKIP][27] ([fdo#111325]) -> [PASS][28] +4 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-iclb4/igt@gem_exec_schedule@in-order-bsd.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-iclb6/igt@gem_exec_schedule@in-order-bsd.html * igt@gem_exec_schedule@preempt-bsd1: - shard-iclb: [SKIP][29] ([fdo#109276]) -> [PASS][30] +17 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-iclb8/igt@gem_exec_schedule@preempt-bsd1.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-iclb4/igt@gem_exec_schedule@preempt-bsd1.html * igt@i915_suspend@debugfs-reader: - shard-apl: [DMESG-WARN][31] ([fdo#108566]) -> [PASS][32] +7 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-apl3/igt@i915_suspend@debugfs-reader.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-apl7/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@fence-restore-untiled: - shard-apl: [INCOMPLETE][33] ([fdo#103927]) -> [PASS][34] +3 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-apl1/igt@i915_suspend@fence-restore-untiled.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-apl3/igt@i915_suspend@fence-restore-untiled.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-glk: [FAIL][35] ([fdo#105363]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@dpms-vs-vblank-race-interruptible: - shard-glk: [FAIL][37] ([fdo#103060]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-glk6/igt@kms_flip@dpms-vs-vblank-race-interruptible.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-glk4/igt@kms_flip@dpms-vs-vblank-race-interruptible.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-glk: [FAIL][39] ([fdo#103167]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - shard-iclb: [FAIL][41] ([fdo#103167]) -> [PASS][42] +7 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_psr@no_drrs: - shard-iclb: [INCOMPLETE][43] ([fdo#107713]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-iclb7/igt@kms_psr@no_drrs.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-iclb8/igt@kms_psr@no_drrs.html * igt@kms_psr@psr2_cursor_mmap_gtt: - shard-iclb: [SKIP][45] ([fdo#109441]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-iclb5/igt@kms_psr@psr2_cursor_mmap_gtt.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_gtt.html * igt@kms_vblank@pipe-b-ts-continuation-suspend: - shard-kbl: [INCOMPLETE][47] ([fdo#103665]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-kbl2/igt@kms_vblank@pipe-b-ts-continuation-suspend.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-kbl4/igt@kms_vblank@pipe-b-ts-continuation-suspend.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [SKIP][49] ([fdo#109276]) -> [FAIL][50] ([fdo#111329]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-iclb7/igt@gem_ctx_isolation@vcs1-nonpriv.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-iclb2/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_mocs_settings@mocs-isolation-bsd2: - shard-iclb: [FAIL][51] ([fdo#111330]) -> [SKIP][52] ([fdo#109276]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6715/shard-iclb4/igt@gem_mocs_settings@mocs-isolation-bsd2.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/shard-iclb3/igt@gem_mocs_settings@mocs-isolation-bsd2.html [fdo#103060]: https://bugs.freedesktop.org/show_bug.cgi?id=103060 [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232 [fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359 [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329 [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (10 -> 6) ------------------------------ Missing (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5138 -> IGTPW_3354 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_6715: 566f8f36249da60874943886a753a2e2a00ae992 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3354: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/ IGT_5138: b9abe0bf6c478c4f6cac56bff286d6926ad8c0ab @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3354/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH v2 i-g-t] tests/kms_chamelium: Wait for chamelium being reachable after a suspend 2019-08-16 8:35 [igt-dev] [PATCH i-g-t] tests/kms_chamelium: Wait for chamelium being reachable after a suspend Arkadiusz Hiler ` (2 preceding siblings ...) 2019-08-16 19:53 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2019-08-19 7:07 ` Arkadiusz Hiler 2019-08-19 8:13 ` Ser, Simon 2019-08-19 7:35 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_chamelium: Wait for chamelium being reachable after a suspend (rev2) Patchwork 2019-08-19 10:12 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 1 reply; 9+ messages in thread From: Arkadiusz Hiler @ 2019-08-19 7:07 UTC (permalink / raw) To: igt-dev Getting network back after waking up from suspend takes some time. If it's not quick enough, it may cause any following chamelium_rpc to fail. This includes the chamelium port reset in exit handler: igt_chamelium-CRITICAL: Test assertion failure function chamelium_rpc, file ../lib/igt_chamelium.c:349: igt_chamelium-CRITICAL: Failed assertion: !chamelium->env.fault_occurred igt_chamelium-CRITICAL: Last errno: 113, No route to host igt_chamelium-CRITICAL: Chamelium RPC call failed: libcurl failed to execute the HTTP POST transaction, explaining: Failed to connect to 192.168.1.224 port 9992: No route to host Stack trace: #0 ../lib/igt_core.c:1674 __igt_fail_assert() #1 [chamelium_rpc+0x1ea] #2 ../lib/igt_chamelium.c:2274 chamelium_reset() #3 ../lib/igt_chamelium.c:2361 chamelium_deinit() #4 ../lib/igt_core.c:2124 call_exit_handlers() So let's wait for Chamelium to be reachable after each suspend_autoresume. v2: Bump the network timeout to 20s, the slowest observed bring-up was 17s. (Petri) Do not DECREF if we get NULL from __chmelium_rpc(). (Simon & CI) Cc: Simon Ser <simon.ser@intel.com> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=109380 Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com> --- lib/igt_chamelium.c | 26 ++++++++++++++++++++++++++ lib/igt_chamelium.h | 1 + tests/kms_chamelium.c | 4 +++- 3 files changed, 30 insertions(+), 1 deletion(-) diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c index 1c0e1b39..1b03a103 100644 --- a/lib/igt_chamelium.c +++ b/lib/igt_chamelium.c @@ -351,6 +351,32 @@ static xmlrpc_value *chamelium_rpc(struct chamelium *chamelium, return res; } +static bool __chamelium_is_reachable(struct chamelium *chamelium) +{ + xmlrpc_value *res; + + /* GetSupportedInputs does not require a port and is harmless */ + res = __chamelium_rpc(chamelium, NULL, "GetSupportedInputs", "()"); + + if (res != NULL) + xmlrpc_DECREF(res); + + if (chamelium->env.fault_occurred) + igt_debug("Chamelium RPC call failed: %s\n", + chamelium->env.fault_string); + + return !chamelium->env.fault_occurred; +} + +void chamelium_wait_reachable(struct chamelium *chamelium, int timeout) +{ + bool chamelium_online = igt_wait(__chamelium_is_reachable(chamelium), + timeout * 1000, 100); + + igt_assert_f(chamelium_online, + "Couldn't connect to Chamelium for %ds", timeout); +} + /** * chamelium_plug: * @chamelium: The Chamelium instance to use diff --git a/lib/igt_chamelium.h b/lib/igt_chamelium.h index 1cc5e2d8..08705a9d 100644 --- a/lib/igt_chamelium.h +++ b/lib/igt_chamelium.h @@ -112,6 +112,7 @@ drmModeConnector *chamelium_port_get_connector(struct chamelium *chamelium, bool reprobe); const char *chamelium_port_get_name(struct chamelium_port *port); +void chamelium_wait_reachable(struct chamelium *chamelium, int timeout); void chamelium_plug(struct chamelium *chamelium, struct chamelium_port *port); void chamelium_unplug(struct chamelium *chamelium, struct chamelium_port *port); bool chamelium_is_plugged(struct chamelium *chamelium, diff --git a/tests/kms_chamelium.c b/tests/kms_chamelium.c index 0cf1bfbd..ce5ab967 100644 --- a/tests/kms_chamelium.c +++ b/tests/kms_chamelium.c @@ -57,6 +57,7 @@ typedef struct { } data_t; #define HOTPLUG_TIMEOUT 20 /* seconds */ +#define ONLINE_TIMEOUT 20 /* seconds */ #define HPD_STORM_PULSE_INTERVAL_DP 100 /* ms */ #define HPD_STORM_PULSE_INTERVAL_HDMI 200 /* ms */ @@ -368,6 +369,7 @@ try_suspend_resume_hpd(data_t *data, struct chamelium_port *port, igt_system_suspend_autoresume(state, test); igt_assert(wait_for_hotplug(mon, &timeout)); + chamelium_wait_reachable(data->chamelium, ONLINE_TIMEOUT); if (port) { igt_assert_eq(reprobe_connector(data, port), target_state); @@ -473,8 +475,8 @@ test_suspend_resume_edid_change(data_t *data, struct chamelium_port *port, igt_flush_hotplugs(mon); igt_system_suspend_autoresume(state, test); - igt_assert(igt_hotplug_detected(mon, HOTPLUG_TIMEOUT)); + chamelium_wait_reachable(data->chamelium, ONLINE_TIMEOUT); get_connectors_link_status_failed(data, link_status_failed[1]); -- 2.21.0 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH v2 i-g-t] tests/kms_chamelium: Wait for chamelium being reachable after a suspend 2019-08-19 7:07 ` [igt-dev] [PATCH v2 i-g-t] " Arkadiusz Hiler @ 2019-08-19 8:13 ` Ser, Simon 0 siblings, 0 replies; 9+ messages in thread From: Ser, Simon @ 2019-08-19 8:13 UTC (permalink / raw) To: Hiler, Arkadiusz, igt-dev@lists.freedesktop.org On Mon, 2019-08-19 at 10:07 +0300, Arkadiusz Hiler wrote: > Getting network back after waking up from suspend takes some time. > If it's not quick enough, it may cause any following chamelium_rpc > to fail. > > This includes the chamelium port reset in exit handler: > > igt_chamelium-CRITICAL: Test assertion failure function chamelium_rpc, > file ../lib/igt_chamelium.c:349: > igt_chamelium-CRITICAL: Failed assertion: !chamelium->env.fault_occurred > igt_chamelium-CRITICAL: Last errno: 113, No route to host > igt_chamelium-CRITICAL: Chamelium RPC call failed: libcurl failed to execute > the HTTP POST transaction, explaining: > Failed to connect to 192.168.1.224 port 9992: No route to host > > Stack trace: > #0 ../lib/igt_core.c:1674 __igt_fail_assert() > #1 [chamelium_rpc+0x1ea] > #2 ../lib/igt_chamelium.c:2274 chamelium_reset() > #3 ../lib/igt_chamelium.c:2361 chamelium_deinit() > #4 ../lib/igt_core.c:2124 call_exit_handlers() > > So let's wait for Chamelium to be reachable after each suspend_autoresume. > > v2: Bump the network timeout to 20s, > the slowest observed bring-up was 17s. (Petri) > Do not DECREF if we get NULL from __chmelium_rpc(). (Simon & CI) > > Cc: Simon Ser <simon.ser@intel.com> > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=109380 > Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com> Looks good to me, thanks for the patch! Reviewed-by: Simon Ser <simon.ser@intel.com> > --- > lib/igt_chamelium.c | 26 ++++++++++++++++++++++++++ > lib/igt_chamelium.h | 1 + > tests/kms_chamelium.c | 4 +++- > 3 files changed, 30 insertions(+), 1 deletion(-) > > diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c > index 1c0e1b39..1b03a103 100644 > --- a/lib/igt_chamelium.c > +++ b/lib/igt_chamelium.c > @@ -351,6 +351,32 @@ static xmlrpc_value *chamelium_rpc(struct chamelium *chamelium, > return res; > } > > +static bool __chamelium_is_reachable(struct chamelium *chamelium) > +{ > + xmlrpc_value *res; > + > + /* GetSupportedInputs does not require a port and is harmless */ > + res = __chamelium_rpc(chamelium, NULL, "GetSupportedInputs", "()"); > + > + if (res != NULL) > + xmlrpc_DECREF(res); > + > + if (chamelium->env.fault_occurred) > + igt_debug("Chamelium RPC call failed: %s\n", > + chamelium->env.fault_string); > + > + return !chamelium->env.fault_occurred; > +} > + > +void chamelium_wait_reachable(struct chamelium *chamelium, int timeout) > +{ > + bool chamelium_online = igt_wait(__chamelium_is_reachable(chamelium), > + timeout * 1000, 100); > + > + igt_assert_f(chamelium_online, > + "Couldn't connect to Chamelium for %ds", timeout); > +} > + > /** > * chamelium_plug: > * @chamelium: The Chamelium instance to use > diff --git a/lib/igt_chamelium.h b/lib/igt_chamelium.h > index 1cc5e2d8..08705a9d 100644 > --- a/lib/igt_chamelium.h > +++ b/lib/igt_chamelium.h > @@ -112,6 +112,7 @@ drmModeConnector *chamelium_port_get_connector(struct chamelium *chamelium, > bool reprobe); > const char *chamelium_port_get_name(struct chamelium_port *port); > > +void chamelium_wait_reachable(struct chamelium *chamelium, int timeout); > void chamelium_plug(struct chamelium *chamelium, struct chamelium_port *port); > void chamelium_unplug(struct chamelium *chamelium, struct chamelium_port *port); > bool chamelium_is_plugged(struct chamelium *chamelium, > diff --git a/tests/kms_chamelium.c b/tests/kms_chamelium.c > index 0cf1bfbd..ce5ab967 100644 > --- a/tests/kms_chamelium.c > +++ b/tests/kms_chamelium.c > @@ -57,6 +57,7 @@ typedef struct { > } data_t; > > #define HOTPLUG_TIMEOUT 20 /* seconds */ > +#define ONLINE_TIMEOUT 20 /* seconds */ > > #define HPD_STORM_PULSE_INTERVAL_DP 100 /* ms */ > #define HPD_STORM_PULSE_INTERVAL_HDMI 200 /* ms */ > @@ -368,6 +369,7 @@ try_suspend_resume_hpd(data_t *data, struct chamelium_port *port, > > igt_system_suspend_autoresume(state, test); > igt_assert(wait_for_hotplug(mon, &timeout)); > + chamelium_wait_reachable(data->chamelium, ONLINE_TIMEOUT); > > if (port) { > igt_assert_eq(reprobe_connector(data, port), target_state); > @@ -473,8 +475,8 @@ test_suspend_resume_edid_change(data_t *data, struct chamelium_port *port, > igt_flush_hotplugs(mon); > > igt_system_suspend_autoresume(state, test); > - > igt_assert(igt_hotplug_detected(mon, HOTPLUG_TIMEOUT)); > + chamelium_wait_reachable(data->chamelium, ONLINE_TIMEOUT); > > get_connectors_link_status_failed(data, link_status_failed[1]); > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_chamelium: Wait for chamelium being reachable after a suspend (rev2) 2019-08-16 8:35 [igt-dev] [PATCH i-g-t] tests/kms_chamelium: Wait for chamelium being reachable after a suspend Arkadiusz Hiler ` (3 preceding siblings ...) 2019-08-19 7:07 ` [igt-dev] [PATCH v2 i-g-t] " Arkadiusz Hiler @ 2019-08-19 7:35 ` Patchwork 2019-08-19 10:12 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2019-08-19 7:35 UTC (permalink / raw) To: Arkadiusz Hiler; +Cc: igt-dev == Series Details == Series: tests/kms_chamelium: Wait for chamelium being reachable after a suspend (rev2) URL : https://patchwork.freedesktop.org/series/65292/ State : success == Summary == CI Bug Log - changes from CI_DRM_6734 -> IGTPW_3363 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/65292/revisions/2/mbox/ Known issues ------------ Here are the changes found in IGTPW_3363 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_close_race@basic-threads: - fi-bxt-dsi: [PASS][1] -> [INCOMPLETE][2] ([fdo#103927]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/fi-bxt-dsi/igt@gem_close_race@basic-threads.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/fi-bxt-dsi/igt@gem_close_race@basic-threads.html * igt@i915_module_load@reload-no-display: - fi-icl-u3: [PASS][3] -> [DMESG-WARN][4] ([fdo#107724]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/fi-icl-u3/igt@i915_module_load@reload-no-display.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/fi-icl-u3/igt@i915_module_load@reload-no-display.html * igt@i915_selftest@live_hangcheck: - fi-icl-u2: [PASS][5] -> [INCOMPLETE][6] ([fdo#107713] / [fdo#108569]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/fi-icl-u2/igt@i915_selftest@live_hangcheck.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/fi-icl-u2/igt@i915_selftest@live_hangcheck.html * igt@kms_busy@basic-flip-c: - fi-skl-6770hq: [PASS][7] -> [SKIP][8] ([fdo#109271] / [fdo#109278]) +2 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/fi-skl-6770hq/igt@kms_busy@basic-flip-c.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/fi-skl-6770hq/igt@kms_busy@basic-flip-c.html * igt@kms_flip@basic-flip-vs-dpms: - fi-skl-6770hq: [PASS][9] -> [SKIP][10] ([fdo#109271]) +23 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/fi-skl-6770hq/igt@kms_flip@basic-flip-vs-dpms.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/fi-skl-6770hq/igt@kms_flip@basic-flip-vs-dpms.html #### Possible fixes #### * igt@gem_sync@basic-store-each: - fi-cfl-8109u: [INCOMPLETE][11] -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/fi-cfl-8109u/igt@gem_sync@basic-store-each.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/fi-cfl-8109u/igt@gem_sync@basic-store-each.html * igt@kms_addfb_basic@addfb25-y-tiled-small: - fi-icl-u3: [DMESG-WARN][13] ([fdo#107724]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/fi-icl-u3/igt@kms_addfb_basic@addfb25-y-tiled-small.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/fi-icl-u3/igt@kms_addfb_basic@addfb25-y-tiled-small.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-kbl-7567u: [WARN][15] ([fdo#109380]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/fi-kbl-7567u/igt@kms_chamelium@common-hpd-after-suspend.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/fi-kbl-7567u/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_pipe_crc_basic@read-crc-pipe-c: - fi-kbl-7567u: [SKIP][17] ([fdo#109271]) -> [PASS][18] +23 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/fi-kbl-7567u/igt@kms_pipe_crc_basic@read-crc-pipe-c.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/fi-kbl-7567u/igt@kms_pipe_crc_basic@read-crc-pipe-c.html [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109380]: https://bugs.freedesktop.org/show_bug.cgi?id=109380 Participating hosts (51 -> 44) ------------------------------ Missing (7): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5138 -> IGTPW_3363 CI-20190529: 20190529 CI_DRM_6734: 9f8a7e5a58fb61a47cd1669d03eaad0b058fa4db @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3363: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/ IGT_5138: b9abe0bf6c478c4f6cac56bff286d6926ad8c0ab @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_chamelium: Wait for chamelium being reachable after a suspend (rev2) 2019-08-16 8:35 [igt-dev] [PATCH i-g-t] tests/kms_chamelium: Wait for chamelium being reachable after a suspend Arkadiusz Hiler ` (4 preceding siblings ...) 2019-08-19 7:35 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_chamelium: Wait for chamelium being reachable after a suspend (rev2) Patchwork @ 2019-08-19 10:12 ` Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2019-08-19 10:12 UTC (permalink / raw) To: Arkadiusz Hiler; +Cc: igt-dev == Series Details == Series: tests/kms_chamelium: Wait for chamelium being reachable after a suspend (rev2) URL : https://patchwork.freedesktop.org/series/65292/ State : success == Summary == CI Bug Log - changes from CI_DRM_6734_full -> IGTPW_3363_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/65292/revisions/2/mbox/ Known issues ------------ Here are the changes found in IGTPW_3363_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_shared@exec-single-timeline-bsd: - shard-iclb: [PASS][1] -> [SKIP][2] ([fdo#110841]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-iclb3/igt@gem_ctx_shared@exec-single-timeline-bsd.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-iclb1/igt@gem_ctx_shared@exec-single-timeline-bsd.html * igt@gem_exec_schedule@preempt-bsd1: - shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#109276]) +18 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-iclb2/igt@gem_exec_schedule@preempt-bsd1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-iclb6/igt@gem_exec_schedule@preempt-bsd1.html * igt@gem_exec_schedule@preemptive-hang-bsd: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#111325]) +5 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-iclb7/igt@gem_exec_schedule@preemptive-hang-bsd.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-iclb2/igt@gem_exec_schedule@preemptive-hang-bsd.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-snb: [PASS][7] -> [SKIP][8] ([fdo#109271]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-snb2/igt@i915_pm_rc6_residency@rc6-accuracy.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-snb7/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@universal-planes-dpms: - shard-apl: [PASS][9] -> [INCOMPLETE][10] ([fdo#103927]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-apl1/igt@i915_pm_rpm@universal-planes-dpms.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-apl2/igt@i915_pm_rpm@universal-planes-dpms.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-hsw: [PASS][11] -> [FAIL][12] ([fdo#105767]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-hsw8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-hsw8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-apl: [PASS][13] -> [FAIL][14] ([fdo#105363]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-apl5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-apl5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html - shard-glk: [PASS][15] -> [FAIL][16] ([fdo#105363]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-glk5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-iclb: [PASS][17] -> [FAIL][18] ([fdo#103167]) +6 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [PASS][19] -> [SKIP][20] ([fdo#109441]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-iclb2/igt@kms_psr@psr2_no_drrs.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-iclb7/igt@kms_psr@psr2_no_drrs.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-apl: [PASS][21] -> [DMESG-WARN][22] ([fdo#108566]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html #### Possible fixes #### * igt@gem_exec_schedule@independent-bsd: - shard-iclb: [SKIP][23] ([fdo#111325]) -> [PASS][24] +2 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-iclb2/igt@gem_exec_schedule@independent-bsd.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-iclb8/igt@gem_exec_schedule@independent-bsd.html * igt@gem_exec_schedule@preempt-other-bsd1: - shard-iclb: [SKIP][25] ([fdo#109276]) -> [PASS][26] +23 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-iclb3/igt@gem_exec_schedule@preempt-other-bsd1.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-iclb2/igt@gem_exec_schedule@preempt-other-bsd1.html * igt@gem_tiled_swapping@non-threaded: - shard-glk: [DMESG-WARN][27] ([fdo#108686]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-glk4/igt@gem_tiled_swapping@non-threaded.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-glk9/igt@gem_tiled_swapping@non-threaded.html * igt@i915_suspend@debugfs-reader: - shard-apl: [DMESG-WARN][29] ([fdo#108566]) -> [PASS][30] +6 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-apl6/igt@i915_suspend@debugfs-reader.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-apl3/igt@i915_suspend@debugfs-reader.html * igt@kms_cursor_edge_walk@pipe-b-64x64-top-edge: - shard-apl: [INCOMPLETE][31] ([fdo#103927]) -> [PASS][32] +2 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-apl5/igt@kms_cursor_edge_walk@pipe-b-64x64-top-edge.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-apl4/igt@kms_cursor_edge_walk@pipe-b-64x64-top-edge.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-glk: [FAIL][33] ([fdo#106509] / [fdo#107409]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-glk1/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-glk6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-iclb: [FAIL][35] ([fdo#103167]) -> [PASS][36] +2 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-glk: [FAIL][37] ([fdo#103167]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-glk3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [SKIP][39] ([fdo#109441]) -> [PASS][40] +3 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-iclb4/igt@kms_psr@psr2_primary_mmap_cpu.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html #### Warnings #### * igt@gem_mocs_settings@mocs-isolation-bsd2: - shard-iclb: [SKIP][41] ([fdo#109276]) -> [FAIL][42] ([fdo#111330]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-iclb7/igt@gem_mocs_settings@mocs-isolation-bsd2.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-iclb4/igt@gem_mocs_settings@mocs-isolation-bsd2.html * igt@kms_content_protection@srm: - shard-apl: [FAIL][43] ([fdo#110321]) -> [INCOMPLETE][44] ([fdo#103927]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6734/shard-apl7/igt@kms_content_protection@srm.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/shard-apl8/igt@kms_content_protection@srm.html [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363 [fdo#105767]: https://bugs.freedesktop.org/show_bug.cgi?id=105767 [fdo#106509]: https://bugs.freedesktop.org/show_bug.cgi?id=106509 [fdo#107409]: https://bugs.freedesktop.org/show_bug.cgi?id=107409 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321 [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841 [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 Participating hosts (10 -> 6) ------------------------------ Missing (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5138 -> IGTPW_3363 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_6734: 9f8a7e5a58fb61a47cd1669d03eaad0b058fa4db @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3363: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/ IGT_5138: b9abe0bf6c478c4f6cac56bff286d6926ad8c0ab @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3363/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2019-08-19 10:12 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-08-16 8:35 [igt-dev] [PATCH i-g-t] tests/kms_chamelium: Wait for chamelium being reachable after a suspend Arkadiusz Hiler 2019-08-16 8:46 ` Petri Latvala 2019-08-16 9:08 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-08-16 14:28 ` Ser, Simon 2019-08-16 19:53 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2019-08-19 7:07 ` [igt-dev] [PATCH v2 i-g-t] " Arkadiusz Hiler 2019-08-19 8:13 ` Ser, Simon 2019-08-19 7:35 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_chamelium: Wait for chamelium being reachable after a suspend (rev2) Patchwork 2019-08-19 10:12 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox