All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t CI 1/4] lib/igt_psr: Unset errno when expected
@ 2019-11-14 22:45 José Roberto de Souza
  2019-11-14 22:45 ` [igt-dev] [PATCH i-g-t CI 2/4] tests/i915_pm_dc: Use psr_sink_support instead of reimplement it again José Roberto de Souza
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: José Roberto de Souza @ 2019-11-14 22:45 UTC (permalink / raw)
  To: igt-dev; +Cc: Jeevan B

Writing 0xf to i915_edp_psr_debug is expected to have -EINVAL
returned in newer kernels but this error actually comes from errno
not from the return of write()(check writeN()), so unseting the
expected errno so this do not cause tests to skips.

Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=112257
Cc: Jeevan B <jeevan.b@intel.com>
Cc: Anshuman Gupta <anshuman.gupta@intel.com>
Cc: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
---
 lib/igt_psr.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lib/igt_psr.c b/lib/igt_psr.c
index 6d192689..83ccacdd 100644
--- a/lib/igt_psr.c
+++ b/lib/igt_psr.c
@@ -72,9 +72,10 @@ static int has_psr_debugfs(int debugfs_fd)
 	 * -ENODEV is returned when PSR is unavailable.
 	 */
 	ret = psr_write(debugfs_fd, "0xf");
-	if (ret == -EINVAL)
+	if (ret == -EINVAL) {
+		errno = 0;
 		return 0;
-	else if (ret < 0)
+	} else if (ret < 0)
 		return ret;
 
 	/* legacy debugfs api, we enabled irqs by writing, disable them. */
-- 
2.24.0

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

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

* [igt-dev] [PATCH i-g-t CI 2/4] tests/i915_pm_dc: Use psr_sink_support instead of reimplement it again
  2019-11-14 22:45 [igt-dev] [PATCH i-g-t CI 1/4] lib/igt_psr: Unset errno when expected José Roberto de Souza
@ 2019-11-14 22:45 ` José Roberto de Souza
  2019-11-14 22:45 ` [igt-dev] [PATCH i-g-t CI 3/4] tests/i915_pm_dc: Simplify runtime pm handling José Roberto de Souza
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: José Roberto de Souza @ 2019-11-14 22:45 UTC (permalink / raw)
  To: igt-dev; +Cc: Jeevan B

Also moving the sink check to igt_fixture as it do not change
overtime.

Cc: Jeevan B <jeevan.b@intel.com>
Cc: Anshuman Gupta <anshuman.gupta@intel.com>
Cc: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
---
 tests/i915/i915_pm_dc.c | 15 +--------------
 1 file changed, 1 insertion(+), 14 deletions(-)

diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c
index f7a3896b..de3c8722 100644
--- a/tests/i915/i915_pm_dc.c
+++ b/tests/i915/i915_pm_dc.c
@@ -84,16 +84,6 @@ static void display_fini(data_t *data)
 	igt_display_fini(&data->display);
 }
 
-static bool edp_psr_sink_support(data_t *data)
-{
-	char buf[512];
-
-	igt_debugfs_simple_read(data->debugfs_fd, "i915_edp_psr_status",
-				buf, sizeof(buf));
-
-	return strstr(buf, "Sink support: yes");
-}
-
 static bool edp_psr2_enabled(data_t *data)
 {
 	char buf[512];
@@ -417,6 +407,7 @@ int main(int argc, char *argv[])
 		igt_require(has_runtime_pm);
 		igt_require(igt_pm_dmc_loaded(data.debugfs_fd));
 		igt_display_require(&data.display, data.drm_fd);
+		igt_require(psr_sink_support(data.debugfs_fd, PSR_MODE_1));
 		/* Make sure our Kernel supports MSR and the module is loaded */
 		igt_require(igt_kmod_load("msr", NULL) == 0);
 
@@ -436,8 +427,6 @@ int main(int argc, char *argv[])
 	igt_subtest("dc5-psr") {
 		data.op_psr_mode = PSR_MODE_1;
 		psr_enable(data.debugfs_fd, data.op_psr_mode);
-		igt_require_f(edp_psr_sink_support(&data),
-			      "Sink does not support PSR\n");
 		test_dc_state_psr(&data, CHECK_DC5);
 	}
 
@@ -446,8 +435,6 @@ int main(int argc, char *argv[])
 	igt_subtest("dc6-psr") {
 		data.op_psr_mode = PSR_MODE_1;
 		psr_enable(data.debugfs_fd, data.op_psr_mode);
-		igt_require_f(edp_psr_sink_support(&data),
-			      "Sink does not support PSR\n");
 		igt_require_f(igt_pm_pc8_plus_residencies_enabled(data.msr_fd),
 			      "PC8+ residencies not supported\n");
 		test_dc_state_psr(&data, CHECK_DC6);
-- 
2.24.0

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

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

* [igt-dev] [PATCH i-g-t CI 3/4] tests/i915_pm_dc: Simplify runtime pm handling
  2019-11-14 22:45 [igt-dev] [PATCH i-g-t CI 1/4] lib/igt_psr: Unset errno when expected José Roberto de Souza
  2019-11-14 22:45 ` [igt-dev] [PATCH i-g-t CI 2/4] tests/i915_pm_dc: Use psr_sink_support instead of reimplement it again José Roberto de Souza
@ 2019-11-14 22:45 ` José Roberto de Souza
  2019-11-14 22:45 ` [igt-dev] [PATCH i-g-t CI 4/4] lib/igt_psr: Move "is enabled" implementation to lib José Roberto de Souza
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: José Roberto de Souza @ 2019-11-14 22:45 UTC (permalink / raw)
  To: igt-dev; +Cc: Jeevan B

has_runtime_pm was not used outside of igt_fixture also no need to
print this info, if not supported IGT skip log will contain the line
that was not meet.

Cc: Jeevan B <jeevan.b@intel.com>
Cc: Anshuman Gupta <anshuman.gupta@intel.com>
Cc: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
---
 tests/i915/i915_pm_dc.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c
index de3c8722..02b08189 100644
--- a/tests/i915/i915_pm_dc.c
+++ b/tests/i915/i915_pm_dc.c
@@ -390,7 +390,6 @@ static void test_dc_state_dpms(data_t *data, int dc_flag)
 IGT_TEST_DESCRIPTION("These tests validate Display Power DC states");
 int main(int argc, char *argv[])
 {
-	bool has_runtime_pm;
 	data_t data = {};
 
 	igt_skip_on_simulation();
@@ -402,9 +401,7 @@ int main(int argc, char *argv[])
 		kmstest_set_vt_graphics_mode();
 		data.devid = intel_get_drm_devid(data.drm_fd);
 		igt_pm_enable_sata_link_power_management();
-		has_runtime_pm = igt_setup_runtime_pm();
-		igt_info("Runtime PM support: %d\n", has_runtime_pm);
-		igt_require(has_runtime_pm);
+		igt_require(igt_setup_runtime_pm());
 		igt_require(igt_pm_dmc_loaded(data.debugfs_fd));
 		igt_display_require(&data.display, data.drm_fd);
 		igt_require(psr_sink_support(data.debugfs_fd, PSR_MODE_1));
-- 
2.24.0

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

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

* [igt-dev] [PATCH i-g-t CI 4/4] lib/igt_psr: Move "is enabled" implementation to lib
  2019-11-14 22:45 [igt-dev] [PATCH i-g-t CI 1/4] lib/igt_psr: Unset errno when expected José Roberto de Souza
  2019-11-14 22:45 ` [igt-dev] [PATCH i-g-t CI 2/4] tests/i915_pm_dc: Use psr_sink_support instead of reimplement it again José Roberto de Souza
  2019-11-14 22:45 ` [igt-dev] [PATCH i-g-t CI 3/4] tests/i915_pm_dc: Simplify runtime pm handling José Roberto de Souza
@ 2019-11-14 22:45 ` José Roberto de Souza
  2019-11-14 23:45 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,CI,1/4] lib/igt_psr: Unset errno when expected Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: José Roberto de Souza @ 2019-11-14 22:45 UTC (permalink / raw)
  To: igt-dev; +Cc: Jeevan B

i915_pm_dc have implemented a function to check if PSR2 is enabled,
that may be util to future tests so move it to PSR lib.

Cc: Jeevan B <jeevan.b@intel.com>
Cc: Anshuman Gupta <anshuman.gupta@intel.com>
Cc: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
---
 lib/igt_psr.c           | 16 ++++++++++++++++
 lib/igt_psr.h           |  1 +
 tests/i915/i915_pm_dc.c | 13 +------------
 3 files changed, 18 insertions(+), 12 deletions(-)

diff --git a/lib/igt_psr.c b/lib/igt_psr.c
index 83ccacdd..32d69fea 100644
--- a/lib/igt_psr.c
+++ b/lib/igt_psr.c
@@ -210,3 +210,19 @@ bool psr2_wait_su(int debugfs_fd, uint16_t *num_su_blocks)
 {
 	return igt_wait(psr2_read_last_num_su_blocks_val(debugfs_fd, num_su_blocks), 40, 1);
 }
+
+bool psr_enabled(int debugfs_fd, enum psr_mode mode)
+{
+	char buf[PSR_STATUS_MAX_LEN];
+	int ret;
+
+	ret = igt_debugfs_simple_read(debugfs_fd, "i915_edp_psr_status", buf,
+				      sizeof(buf));
+	if (ret < 0)
+		return false;
+
+	if (mode == PSR_MODE_1)
+		return strstr(buf, "PSR mode: PSR1 enabled");
+	else
+		return strstr(buf, "PSR mode: PSR2 enabled");
+}
diff --git a/lib/igt_psr.h b/lib/igt_psr.h
index ca385736..9885cb11 100644
--- a/lib/igt_psr.h
+++ b/lib/igt_psr.h
@@ -42,5 +42,6 @@ bool psr_enable(int debugfs_fd, enum psr_mode);
 bool psr_disable(int debugfs_fd);
 bool psr_sink_support(int debugfs_fd, enum psr_mode);
 bool psr2_wait_su(int debugfs_fd, uint16_t *num_su_blocks);
+bool psr_enabled(int debugfs_fd, enum psr_mode mode);
 
 #endif
diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c
index 02b08189..2cf357a2 100644
--- a/tests/i915/i915_pm_dc.c
+++ b/tests/i915/i915_pm_dc.c
@@ -84,16 +84,6 @@ static void display_fini(data_t *data)
 	igt_display_fini(&data->display);
 }
 
-static bool edp_psr2_enabled(data_t *data)
-{
-	char buf[512];
-
-	igt_debugfs_simple_read(data->debugfs_fd, "i915_edp_psr_status",
-				buf, sizeof(buf));
-
-	return strstr(buf, "PSR mode: PSR2 enabled") != NULL;
-}
-
 static void cleanup_dc_psr(data_t *data)
 {
 	igt_plane_t *primary;
@@ -298,8 +288,7 @@ static void setup_dc3co(data_t *data)
 {
 	data->op_psr_mode = PSR_MODE_2;
 	psr_enable(data->debugfs_fd, data->op_psr_mode);
-	igt_require_f(edp_psr2_enabled(data),
-		      "PSR2 is not enabled\n");
+	igt_require(psr_enabled(data->debugfs_fd, PSR_MODE_2));
 }
 
 static void test_dc3co_vpb_simulation(data_t *data)
-- 
2.24.0

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

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

* [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,CI,1/4] lib/igt_psr: Unset errno when expected
  2019-11-14 22:45 [igt-dev] [PATCH i-g-t CI 1/4] lib/igt_psr: Unset errno when expected José Roberto de Souza
                   ` (2 preceding siblings ...)
  2019-11-14 22:45 ` [igt-dev] [PATCH i-g-t CI 4/4] lib/igt_psr: Move "is enabled" implementation to lib José Roberto de Souza
@ 2019-11-14 23:45 ` Patchwork
  2019-11-15  8:31 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
  2019-11-16  5:15 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-11-14 23:45 UTC (permalink / raw)
  To: José Roberto de Souza; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,CI,1/4] lib/igt_psr: Unset errno when expected
URL   : https://patchwork.freedesktop.org/series/69495/
State : failure

== Summary ==

CI Bug Log - changes from IGT_5285 -> IGTPW_3708
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live_sanitycheck:
    - fi-skl-lmem:        [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/fi-skl-lmem/igt@i915_selftest@live_sanitycheck.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/fi-skl-lmem/igt@i915_selftest@live_sanitycheck.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_setmode@basic-clone-single-crtc:
    - fi-skl-6770hq:      [PASS][3] -> [WARN][4] ([fdo#112252])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/fi-skl-6770hq/igt@kms_setmode@basic-clone-single-crtc.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/fi-skl-6770hq/igt@kms_setmode@basic-clone-single-crtc.html

  
#### Possible fixes ####

  * igt@i915_pm_rpm@module-reload:
    - fi-skl-6770hq:      [FAIL][5] ([fdo#108511]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-hsw-peppy:       [DMESG-WARN][7] ([fdo#102614]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html

  
  [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614
  [fdo#108511]: https://bugs.freedesktop.org/show_bug.cgi?id=108511
  [fdo#112252]: https://bugs.freedesktop.org/show_bug.cgi?id=112252


Participating hosts (49 -> 44)
------------------------------

  Missing    (5): fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-blb-e6850 fi-byt-clapper 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5285 -> IGTPW_3708

  CI-20190529: 20190529
  CI_DRM_7346: 78fd2497a0a373d6a68c047d759851e0a895f112 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3708: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/index.html
  IGT_5285: d5d49cb92efc0e81512424f588990805745dfbd5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,CI,1/4] lib/igt_psr: Unset errno when expected
  2019-11-14 22:45 [igt-dev] [PATCH i-g-t CI 1/4] lib/igt_psr: Unset errno when expected José Roberto de Souza
                   ` (3 preceding siblings ...)
  2019-11-14 23:45 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,CI,1/4] lib/igt_psr: Unset errno when expected Patchwork
@ 2019-11-15  8:31 ` Patchwork
  2019-11-16  5:15 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-11-15  8:31 UTC (permalink / raw)
  To: José Roberto de Souza; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,CI,1/4] lib/igt_psr: Unset errno when expected
URL   : https://patchwork.freedesktop.org/series/69495/
State : success

== Summary ==

CI Bug Log - changes from IGT_5285 -> IGTPW_3708
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live_sanitycheck:
    - fi-skl-lmem:        [PASS][1] -> [DMESG-WARN][2] ([fdo#112261])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/fi-skl-lmem/igt@i915_selftest@live_sanitycheck.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/fi-skl-lmem/igt@i915_selftest@live_sanitycheck.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - fi-skl-6770hq:      [PASS][3] -> [WARN][4] ([fdo#112252])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/fi-skl-6770hq/igt@kms_setmode@basic-clone-single-crtc.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/fi-skl-6770hq/igt@kms_setmode@basic-clone-single-crtc.html

  
#### Possible fixes ####

  * igt@i915_pm_rpm@module-reload:
    - fi-skl-6770hq:      [FAIL][5] ([fdo#108511]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-hsw-peppy:       [DMESG-WARN][7] ([fdo#102614]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html

  
  [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614
  [fdo#108511]: https://bugs.freedesktop.org/show_bug.cgi?id=108511
  [fdo#112252]: https://bugs.freedesktop.org/show_bug.cgi?id=112252
  [fdo#112261]: https://bugs.freedesktop.org/show_bug.cgi?id=112261


Participating hosts (49 -> 44)
------------------------------

  Missing    (5): fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-blb-e6850 fi-byt-clapper 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5285 -> IGTPW_3708

  CI-20190529: 20190529
  CI_DRM_7346: 78fd2497a0a373d6a68c047d759851e0a895f112 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3708: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/index.html
  IGT_5285: d5d49cb92efc0e81512424f588990805745dfbd5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,CI,1/4] lib/igt_psr: Unset errno when expected
  2019-11-14 22:45 [igt-dev] [PATCH i-g-t CI 1/4] lib/igt_psr: Unset errno when expected José Roberto de Souza
                   ` (4 preceding siblings ...)
  2019-11-15  8:31 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2019-11-16  5:15 ` Patchwork
  2019-11-18 18:18   ` Souza, Jose
  5 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2019-11-16  5:15 UTC (permalink / raw)
  To: José Roberto de Souza; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,CI,1/4] lib/igt_psr: Unset errno when expected
URL   : https://patchwork.freedesktop.org/series/69495/
State : success

== Summary ==

CI Bug Log - changes from IGT_5285_full -> IGTPW_3708_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Suppressed ####

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

  * {igt@gem_exec_parse_blt@batch-without-end}:
    - shard-tglb:         NOTRUN -> [SKIP][1] +3 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb5/igt@gem_exec_parse_blt@batch-without-end.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@vcs1-s3:
    - shard-tglb:         [PASS][2] -> [INCOMPLETE][3] ([fdo#111832])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb4/igt@gem_ctx_isolation@vcs1-s3.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb2/igt@gem_ctx_isolation@vcs1-s3.html

  * igt@gem_ctx_persistence@vcs1-mixed-process:
    - shard-iclb:         [PASS][4] -> [SKIP][5] ([fdo#109276] / [fdo#112080]) +3 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb4/igt@gem_ctx_persistence@vcs1-mixed-process.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb5/igt@gem_ctx_persistence@vcs1-mixed-process.html

  * igt@gem_exec_schedule@preempt-self-bsd:
    - shard-iclb:         [PASS][6] -> [SKIP][7] ([fdo#112146]) +1 similar issue
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb6/igt@gem_exec_schedule@preempt-self-bsd.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb1/igt@gem_exec_schedule@preempt-self-bsd.html

  * igt@gem_exec_suspend@basic-s3:
    - shard-apl:          [PASS][8] -> [DMESG-WARN][9] ([fdo#108566])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-apl2/igt@gem_exec_suspend@basic-s3.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-apl4/igt@gem_exec_suspend@basic-s3.html

  * igt@gem_persistent_relocs@forked-interruptible-thrash-inactive:
    - shard-hsw:          [PASS][10] -> [TIMEOUT][11] ([fdo#112068 ])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-hsw1/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-hsw6/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html

  * igt@gem_sync@basic-many-each:
    - shard-tglb:         [PASS][12] -> [INCOMPLETE][13] ([fdo#111647] / [fdo#111998])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb9/igt@gem_sync@basic-many-each.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb4/igt@gem_sync@basic-many-each.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-snb:          [PASS][14] -> [DMESG-WARN][15] ([fdo#111870]) +2 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-snb6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

  * igt@gem_userptr_blits@sync-unmap-after-close:
    - shard-hsw:          [PASS][16] -> [DMESG-WARN][17] ([fdo#111870]) +2 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-hsw8/igt@gem_userptr_blits@sync-unmap-after-close.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-hsw1/igt@gem_userptr_blits@sync-unmap-after-close.html

  * igt@i915_pm_dc@dc5-dpms:
    - shard-glk:          [PASS][18] -> [SKIP][19] ([fdo#109271])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-glk9/igt@i915_pm_dc@dc5-dpms.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-glk5/igt@i915_pm_dc@dc5-dpms.html
    - shard-apl:          [PASS][20] -> [SKIP][21] ([fdo#109271])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-apl8/igt@i915_pm_dc@dc5-dpms.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-apl2/igt@i915_pm_dc@dc5-dpms.html
    - shard-kbl:          [PASS][22] -> [SKIP][23] ([fdo#109271])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-kbl7/igt@i915_pm_dc@dc5-dpms.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-kbl2/igt@i915_pm_dc@dc5-dpms.html

  * igt@i915_selftest@live_hangcheck:
    - shard-hsw:          [PASS][24] -> [DMESG-FAIL][25] ([fdo#111991])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-hsw1/igt@i915_selftest@live_hangcheck.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-hsw1/igt@i915_selftest@live_hangcheck.html

  * igt@i915_suspend@debugfs-reader:
    - shard-tglb:         [PASS][26] -> [INCOMPLETE][27] ([fdo#111832] / [fdo#111850]) +2 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb2/igt@i915_suspend@debugfs-reader.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb3/igt@i915_suspend@debugfs-reader.html
    - shard-kbl:          [PASS][28] -> [DMESG-WARN][29] ([fdo#108566])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-kbl2/igt@i915_suspend@debugfs-reader.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-kbl7/igt@i915_suspend@debugfs-reader.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-snb:          [PASS][30] -> [INCOMPLETE][31] ([fdo#105411])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-snb5/igt@kms_flip@flip-vs-suspend.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-snb1/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-tglb:         [PASS][32] -> [INCOMPLETE][33] ([fdo#111832] / [fdo#111850] / [fdo#112031])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb9/igt@kms_flip@flip-vs-suspend-interruptible.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb3/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
    - shard-iclb:         [PASS][34] -> [FAIL][35] ([fdo#103167]) +1 similar issue
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-tglb:         [PASS][36] -> [FAIL][37] ([fdo#103167]) +3 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_plane_lowres@pipe-a-tiling-x:
    - shard-iclb:         [PASS][38] -> [FAIL][39] ([fdo#103166]) +1 similar issue
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb4/igt@kms_plane_lowres@pipe-a-tiling-x.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb6/igt@kms_plane_lowres@pipe-a-tiling-x.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [PASS][40] -> [SKIP][41] ([fdo#109441]) +1 similar issue
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb6/igt@kms_psr@psr2_no_drrs.html

  * igt@perf_pmu@busy-no-semaphores-vcs1:
    - shard-iclb:         [PASS][42] -> [SKIP][43] ([fdo#112080]) +8 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb8/igt@perf_pmu@busy-no-semaphores-vcs1.html

  * igt@prime_busy@hang-bsd2:
    - shard-iclb:         [PASS][44] -> [SKIP][45] ([fdo#109276]) +18 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb1/igt@prime_busy@hang-bsd2.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb6/igt@prime_busy@hang-bsd2.html

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@vcs1-clean:
    - shard-iclb:         [SKIP][46] ([fdo#109276] / [fdo#112080]) -> [PASS][47] +2 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb7/igt@gem_ctx_isolation@vcs1-clean.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb1/igt@gem_ctx_isolation@vcs1-clean.html

  * igt@gem_eio@kms:
    - shard-tglb:         [INCOMPLETE][48] ([fdo#111887]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb6/igt@gem_eio@kms.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb6/igt@gem_eio@kms.html

  * igt@gem_exec_parallel@vcs1-fds:
    - shard-iclb:         [SKIP][50] ([fdo#112080]) -> [PASS][51] +11 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb5/igt@gem_exec_parallel@vcs1-fds.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb2/igt@gem_exec_parallel@vcs1-fds.html

  * igt@gem_exec_schedule@preempt-other-chain-bsd:
    - shard-iclb:         [SKIP][52] ([fdo#112146]) -> [PASS][53] +6 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb5/igt@gem_exec_schedule@preempt-other-chain-bsd.html

  * igt@gem_exec_schedule@preempt-queue-contexts-chain-blt:
    - shard-tglb:         [INCOMPLETE][54] ([fdo#111606] / [fdo#111677]) -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb6/igt@gem_exec_schedule@preempt-queue-contexts-chain-blt.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb5/igt@gem_exec_schedule@preempt-queue-contexts-chain-blt.html

  * igt@gem_exec_store@basic-all:
    - shard-kbl:          [FAIL][56] -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-kbl4/igt@gem_exec_store@basic-all.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-kbl1/igt@gem_exec_store@basic-all.html

  * igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrash-inactive:
    - shard-apl:          [TIMEOUT][58] ([fdo#112113]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-apl4/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrash-inactive.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-apl3/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrash-inactive.html

  * igt@gem_persistent_relocs@forked-interruptible-thrashing:
    - shard-iclb:         [FAIL][60] ([fdo#112037]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb6/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb2/igt@gem_persistent_relocs@forked-interruptible-thrashing.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-hsw:          [DMESG-WARN][62] ([fdo#111870]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-hsw7/igt@gem_userptr_blits@dmabuf-sync.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-hsw4/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@sync-unmap-cycles:
    - shard-snb:          [DMESG-WARN][64] ([fdo#111870]) -> [PASS][65] +1 similar issue
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-snb1/igt@gem_userptr_blits@sync-unmap-cycles.html

  * igt@i915_pm_dc@dc5-dpms:
    - shard-iclb:         [FAIL][66] ([fdo#111795 ]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb8/igt@i915_pm_dc@dc5-dpms.html

  * igt@i915_selftest@mock_requests:
    - shard-glk:          [DMESG-WARN][68] ([fdo#112158]) -> [PASS][69]
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-glk8/igt@i915_selftest@mock_requests.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-glk3/igt@i915_selftest@mock_requests.html

  * igt@kms_cursor_crc@pipe-c-cursor-dpms:
    - shard-apl:          [FAIL][70] ([fdo#103232]) -> [PASS][71]
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-dpms.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-dpms.html
    - shard-kbl:          [FAIL][72] ([fdo#103232]) -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-dpms.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-dpms.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
    - shard-tglb:         [FAIL][74] ([fdo#103167]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
    - shard-iclb:         [FAIL][76] ([fdo#103167]) -> [PASS][77] +6 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
    - shard-kbl:          [DMESG-WARN][78] ([fdo#108566]) -> [PASS][79] +3 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-kbl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-kbl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [SKIP][80] ([fdo#109642] / [fdo#111068]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb1/igt@kms_psr2_su@page_flip.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb2/igt@kms_psr2_su@page_flip.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-tglb:         [INCOMPLETE][82] ([fdo#111832] / [fdo#111850]) -> [PASS][83] +2 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb5/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb5/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
    - shard-apl:          [DMESG-WARN][84] ([fdo#108566]) -> [PASS][85] +3 similar issues
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-apl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  * igt@prime_vgem@fence-wait-bsd2:
    - shard-iclb:         [SKIP][86] ([fdo#109276]) -> [PASS][87] +16 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb5/igt@prime_vgem@fence-wait-bsd2.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb4/igt@prime_vgem@fence-wait-bsd2.html

  
#### Warnings ####

  * igt@gem_ctx_isolation@vcs2-dirty-create:
    - shard-tglb:         [SKIP][88] ([fdo#111912] / [fdo#112080]) -> [SKIP][89] ([fdo#112080])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb4/igt@gem_ctx_isolation@vcs2-dirty-create.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb9/igt@gem_ctx_isolation@vcs2-dirty-create.html

  * igt@gem_eio@kms:
    - shard-snb:          [DMESG-WARN][90] ([fdo# 112000 ] / [fdo#111781]) -> [INCOMPLETE][91] ([fdo#105411])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-snb6/igt@gem_eio@kms.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-snb5/igt@gem_eio@kms.html

  * igt@gem_exec_schedule@deep-blt:
    - shard-tglb:         [INCOMPLETE][92] ([fdo#111671]) -> [FAIL][93] ([fdo#111646]) +2 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb9/igt@gem_exec_schedule@deep-blt.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb6/igt@gem_exec_schedule@deep-blt.html

  * igt@gem_exec_schedule@deep-bsd2:
    - shard-tglb:         [FAIL][94] ([fdo#111646]) -> [INCOMPLETE][95] ([fdo#111671])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb7/igt@gem_exec_schedule@deep-bsd2.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb7/igt@gem_exec_schedule@deep-bsd2.html

  * igt@gem_persistent_relocs@forked-thrash-inactive:
    - shard-apl:          [DMESG-FAIL][96] -> [TIMEOUT][97] ([fdo#112113])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-apl6/igt@gem_persistent_relocs@forked-thrash-inactive.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-apl1/igt@gem_persistent_relocs@forked-thrash-inactive.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-kbl:          [FAIL][98] ([fdo#111830 ]) -> [SKIP][99] ([fdo#109271])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-kbl7/igt@i915_pm_dc@dc6-dpms.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html

  * igt@kms_atomic_transition@6x-modeset-transitions-fencing:
    - shard-tglb:         [SKIP][100] ([fdo#112016 ] / [fdo#112021 ]) -> [SKIP][101] ([fdo#112021 ])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb8/igt@kms_atomic_transition@6x-modeset-transitions-fencing.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb9/igt@kms_atomic_transition@6x-modeset-transitions-fencing.html

  * igt@kms_psr@psr2_suspend:
    - shard-iclb:         [SKIP][102] ([fdo#109441]) -> [DMESG-WARN][103] ([fdo#107724])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb4/igt@kms_psr@psr2_suspend.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb2/igt@kms_psr@psr2_suspend.html
    - shard-tglb:         [DMESG-WARN][104] ([fdo#111600]) -> [INCOMPLETE][105] ([fdo#111832] / [fdo#111850])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb9/igt@kms_psr@psr2_suspend.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb7/igt@kms_psr@psr2_suspend.html

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

  [fdo# 112000 ]: https://bugs.freedesktop.org/show_bug.cgi?id= 112000 
  [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
  [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#109271]:

== Logs ==

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

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

* Re: [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,CI,1/4] lib/igt_psr: Unset errno when expected
  2019-11-16  5:15 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2019-11-18 18:18   ` Souza, Jose
  0 siblings, 0 replies; 8+ messages in thread
From: Souza, Jose @ 2019-11-18 18:18 UTC (permalink / raw)
  To: igt-dev

On Sat, 2019-11-16 at 05:15 +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: series starting with [i-g-t,CI,1/4] lib/igt_psr: Unset errno
> when expected
> URL   : https://patchwork.freedesktop.org/series/69495/
> State : success
> 
> == Summary ==
> 
> CI Bug Log - changes from IGT_5285_full -> IGTPW_3708_full
> ====================================================
> 
> Summary
> -------
> 
>   **SUCCESS**
> 
>   No regressions found.

Pushed, thanks for the review Arkadiusz

> 
>   External URL: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/index.html
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in
> IGTPW_3708_full:
> 
> ### IGT changes ###
> 
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or
> statuses.
>   They do not affect the overall result.
> 
>   * {igt@gem_exec_parse_blt@batch-without-end}:
>     - shard-tglb:         NOTRUN -> [SKIP][1] +3 similar issues
>    [1]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb5/igt@gem_exec_parse_blt@batch-without-end.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_3708_full that come from known
> issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_ctx_isolation@vcs1-s3:
>     - shard-tglb:         [PASS][2] -> [INCOMPLETE][3] ([fdo#111832])
>    [2]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb4/igt@gem_ctx_isolation@vcs1-s3.html
>    [3]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb2/igt@gem_ctx_isolation@vcs1-s3.html
> 
>   * igt@gem_ctx_persistence@vcs1-mixed-process:
>     - shard-iclb:         [PASS][4] -> [SKIP][5] ([fdo#109276] /
> [fdo#112080]) +3 similar issues
>    [4]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb4/igt@gem_ctx_persistence@vcs1-mixed-process.html
>    [5]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb5/igt@gem_ctx_persistence@vcs1-mixed-process.html
> 
>   * igt@gem_exec_schedule@preempt-self-bsd:
>     - shard-iclb:         [PASS][6] -> [SKIP][7] ([fdo#112146]) +1
> similar issue
>    [6]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb6/igt@gem_exec_schedule@preempt-self-bsd.html
>    [7]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb1/igt@gem_exec_schedule@preempt-self-bsd.html
> 
>   * igt@gem_exec_suspend@basic-s3:
>     - shard-apl:          [PASS][8] -> [DMESG-WARN][9] ([fdo#108566])
>    [8]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-apl2/igt@gem_exec_suspend@basic-s3.html
>    [9]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-apl4/igt@gem_exec_suspend@basic-s3.html
> 
>   * igt@gem_persistent_relocs@forked-interruptible-thrash-inactive:
>     - shard-hsw:          [PASS][10] -> [TIMEOUT][11] ([fdo#112068 ])
>    [10]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-hsw1/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html
>    [11]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-hsw6/igt@gem_persistent_relocs@forked-interruptible-thrash-inactive.html
> 
>   * igt@gem_sync@basic-many-each:
>     - shard-tglb:         [PASS][12] -> [INCOMPLETE][13]
> ([fdo#111647] / [fdo#111998])
>    [12]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb9/igt@gem_sync@basic-many-each.html
>    [13]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb4/igt@gem_sync@basic-many-each.html
> 
>   * igt@gem_userptr_blits@map-fixed-invalidate-busy:
>     - shard-snb:          [PASS][14] -> [DMESG-WARN][15]
> ([fdo#111870]) +2 similar issues
>    [14]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
>    [15]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-snb6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
> 
>   * igt@gem_userptr_blits@sync-unmap-after-close:
>     - shard-hsw:          [PASS][16] -> [DMESG-WARN][17]
> ([fdo#111870]) +2 similar issues
>    [16]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-hsw8/igt@gem_userptr_blits@sync-unmap-after-close.html
>    [17]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-hsw1/igt@gem_userptr_blits@sync-unmap-after-close.html
> 
>   * igt@i915_pm_dc@dc5-dpms:
>     - shard-glk:          [PASS][18] -> [SKIP][19] ([fdo#109271])
>    [18]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-glk9/igt@i915_pm_dc@dc5-dpms.html
>    [19]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-glk5/igt@i915_pm_dc@dc5-dpms.html
>     - shard-apl:          [PASS][20] -> [SKIP][21] ([fdo#109271])
>    [20]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-apl8/igt@i915_pm_dc@dc5-dpms.html
>    [21]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-apl2/igt@i915_pm_dc@dc5-dpms.html
>     - shard-kbl:          [PASS][22] -> [SKIP][23] ([fdo#109271])
>    [22]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-kbl7/igt@i915_pm_dc@dc5-dpms.html
>    [23]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-kbl2/igt@i915_pm_dc@dc5-dpms.html
> 
>   * igt@i915_selftest@live_hangcheck:
>     - shard-hsw:          [PASS][24] -> [DMESG-FAIL][25]
> ([fdo#111991])
>    [24]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-hsw1/igt@i915_selftest@live_hangcheck.html
>    [25]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-hsw1/igt@i915_selftest@live_hangcheck.html
> 
>   * igt@i915_suspend@debugfs-reader:
>     - shard-tglb:         [PASS][26] -> [INCOMPLETE][27]
> ([fdo#111832] / [fdo#111850]) +2 similar issues
>    [26]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb2/igt@i915_suspend@debugfs-reader.html
>    [27]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb3/igt@i915_suspend@debugfs-reader.html
>     - shard-kbl:          [PASS][28] -> [DMESG-WARN][29]
> ([fdo#108566])
>    [28]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-kbl2/igt@i915_suspend@debugfs-reader.html
>    [29]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-kbl7/igt@i915_suspend@debugfs-reader.html
> 
>   * igt@kms_flip@flip-vs-suspend:
>     - shard-snb:          [PASS][30] -> [INCOMPLETE][31]
> ([fdo#105411])
>    [30]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-snb5/igt@kms_flip@flip-vs-suspend.html
>    [31]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-snb1/igt@kms_flip@flip-vs-suspend.html
> 
>   * igt@kms_flip@flip-vs-suspend-interruptible:
>     - shard-tglb:         [PASS][32] -> [INCOMPLETE][33]
> ([fdo#111832] / [fdo#111850] / [fdo#112031])
>    [32]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb9/igt@kms_flip@flip-vs-suspend-interruptible.html
>    [33]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb3/igt@kms_flip@flip-vs-suspend-interruptible.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
>     - shard-iclb:         [PASS][34] -> [FAIL][35] ([fdo#103167]) +1
> similar issue
>    [34]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
>    [35]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
> 
>   * igt@kms
> _frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc:
>     - shard-tglb:         [PASS][36] -> [FAIL][37] ([fdo#103167]) +3
> similar issues
>    [36]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html
>    [37]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html
> 
>   * igt@kms_plane_lowres@pipe-a-tiling-x:
>     - shard-iclb:         [PASS][38] -> [FAIL][39] ([fdo#103166]) +1
> similar issue
>    [38]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb4/igt@kms_plane_lowres@pipe-a-tiling-x.html
>    [39]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb6/igt@kms_plane_lowres@pipe-a-tiling-x.html
> 
>   * igt@kms_psr@psr2_no_drrs:
>     - shard-iclb:         [PASS][40] -> [SKIP][41] ([fdo#109441]) +1
> similar issue
>    [40]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
>    [41]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb6/igt@kms_psr@psr2_no_drrs.html
> 
>   * igt@perf_pmu@busy-no-semaphores-vcs1:
>     - shard-iclb:         [PASS][42] -> [SKIP][43] ([fdo#112080]) +8
> similar issues
>    [42]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb2/igt@perf_pmu@busy-no-semaphores-vcs1.html
>    [43]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb8/igt@perf_pmu@busy-no-semaphores-vcs1.html
> 
>   * igt@prime_busy@hang-bsd2:
>     - shard-iclb:         [PASS][44] -> [SKIP][45] ([fdo#109276]) +18
> similar issues
>    [44]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb1/igt@prime_busy@hang-bsd2.html
>    [45]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb6/igt@prime_busy@hang-bsd2.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_ctx_isolation@vcs1-clean:
>     - shard-iclb:         [SKIP][46] ([fdo#109276] / [fdo#112080]) ->
> [PASS][47] +2 similar issues
>    [46]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb7/igt@gem_ctx_isolation@vcs1-clean.html
>    [47]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb1/igt@gem_ctx_isolation@vcs1-clean.html
> 
>   * igt@gem_eio@kms:
>     - shard-tglb:         [INCOMPLETE][48] ([fdo#111887]) ->
> [PASS][49]
>    [48]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb6/igt@gem_eio@kms.html
>    [49]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb6/igt@gem_eio@kms.html
> 
>   * igt@gem_exec_parallel@vcs1-fds:
>     - shard-iclb:         [SKIP][50] ([fdo#112080]) -> [PASS][51] +11
> similar issues
>    [50]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb5/igt@gem_exec_parallel@vcs1-fds.html
>    [51]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb2/igt@gem_exec_parallel@vcs1-fds.html
> 
>   * igt@gem_exec_schedule@preempt-other-chain-bsd:
>     - shard-iclb:         [SKIP][52] ([fdo#112146]) -> [PASS][53] +6
> similar issues
>    [52]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html
>    [53]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb5/igt@gem_exec_schedule@preempt-other-chain-bsd.html
> 
>   * igt@gem_exec_schedule@preempt-queue-contexts-chain-blt:
>     - shard-tglb:         [INCOMPLETE][54] ([fdo#111606] /
> [fdo#111677]) -> [PASS][55]
>    [54]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb6/igt@gem_exec_schedule@preempt-queue-contexts-chain-blt.html
>    [55]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb5/igt@gem_exec_schedule@preempt-queue-contexts-chain-blt.html
> 
>   * igt@gem_exec_store@basic-all:
>     - shard-kbl:          [FAIL][56] -> [PASS][57]
>    [56]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-kbl4/igt@gem_exec_store@basic-all.html
>    [57]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-kbl1/igt@gem_exec_store@basic-all.html
> 
>   * igt@gem
> _persistent_relocs@forked-interruptible-faulting-reloc-thrash-inactive
> :
>     - shard-apl:          [TIMEOUT][58] ([fdo#112113]) -> [PASS][59]
>    [58]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-apl4/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrash-inactive.html
>    [59]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-apl3/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrash-inactive.html
> 
>   * igt@gem_persistent_relocs@forked-interruptible-thrashing:
>     - shard-iclb:         [FAIL][60] ([fdo#112037]) -> [PASS][61]
>    [60]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb6/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
>    [61]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb2/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
> 
>   * igt@gem_userptr_blits@dmabuf-sync:
>     - shard-hsw:          [DMESG-WARN][62] ([fdo#111870]) ->
> [PASS][63]
>    [62]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-hsw7/igt@gem_userptr_blits@dmabuf-sync.html
>    [63]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-hsw4/igt@gem_userptr_blits@dmabuf-sync.html
> 
>   * igt@gem_userptr_blits@sync-unmap-cycles:
>     - shard-snb:          [DMESG-WARN][64] ([fdo#111870]) ->
> [PASS][65] +1 similar issue
>    [64]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-snb5/igt@gem_userptr_blits@sync-unmap-cycles.html
>    [65]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-snb1/igt@gem_userptr_blits@sync-unmap-cycles.html
> 
>   * igt@i915_pm_dc@dc5-dpms:
>     - shard-iclb:         [FAIL][66] ([fdo#111795 ]) -> [PASS][67]
>    [66]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb3/igt@i915_pm_dc@dc5-dpms.html
>    [67]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb8/igt@i915_pm_dc@dc5-dpms.html
> 
>   * igt@i915_selftest@mock_requests:
>     - shard-glk:          [DMESG-WARN][68] ([fdo#112158]) ->
> [PASS][69]
>    [68]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-glk8/igt@i915_selftest@mock_requests.html
>    [69]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-glk3/igt@i915_selftest@mock_requests.html
> 
>   * igt@kms_cursor_crc@pipe-c-cursor-dpms:
>     - shard-apl:          [FAIL][70] ([fdo#103232]) -> [PASS][71]
>    [70]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-dpms.html
>    [71]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-dpms.html
>     - shard-kbl:          [FAIL][72] ([fdo#103232]) -> [PASS][73]
>    [72]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-dpms.html
>    [73]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-dpms.html
> 
>   * igt@kms
> _frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
>     - shard-tglb:         [FAIL][74] ([fdo#103167]) -> [PASS][75]
>    [74]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
>    [75]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
>     - shard-iclb:         [FAIL][76] ([fdo#103167]) -> [PASS][77] +6
> similar issues
>    [76]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
>    [77]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
> 
>   * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
>     - shard-kbl:          [DMESG-WARN][78] ([fdo#108566]) ->
> [PASS][79] +3 similar issues
>    [78]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-kbl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
>    [79]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-kbl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
> 
>   * igt@kms_psr2_su@page_flip:
>     - shard-iclb:         [SKIP][80] ([fdo#109642] / [fdo#111068]) ->
> [PASS][81]
>    [80]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb1/igt@kms_psr2_su@page_flip.html
>    [81]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb2/igt@kms_psr2_su@page_flip.html
> 
>   * igt@kms_vblank@pipe-a-ts-continuation-suspend:
>     - shard-tglb:         [INCOMPLETE][82] ([fdo#111832] /
> [fdo#111850]) -> [PASS][83] +2 similar issues
>    [82]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb5/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
>    [83]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb5/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
>     - shard-apl:          [DMESG-WARN][84] ([fdo#108566]) ->
> [PASS][85] +3 similar issues
>    [84]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-apl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
>    [85]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
> 
>   * igt@prime_vgem@fence-wait-bsd2:
>     - shard-iclb:         [SKIP][86] ([fdo#109276]) -> [PASS][87] +16
> similar issues
>    [86]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb5/igt@prime_vgem@fence-wait-bsd2.html
>    [87]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb4/igt@prime_vgem@fence-wait-bsd2.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_ctx_isolation@vcs2-dirty-create:
>     - shard-tglb:         [SKIP][88] ([fdo#111912] / [fdo#112080]) ->
> [SKIP][89] ([fdo#112080])
>    [88]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb4/igt@gem_ctx_isolation@vcs2-dirty-create.html
>    [89]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb9/igt@gem_ctx_isolation@vcs2-dirty-create.html
> 
>   * igt@gem_eio@kms:
>     - shard-snb:          [DMESG-WARN][90] ([fdo# 112000 ] /
> [fdo#111781]) -> [INCOMPLETE][91] ([fdo#105411])
>    [90]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-snb6/igt@gem_eio@kms.html
>    [91]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-snb5/igt@gem_eio@kms.html
> 
>   * igt@gem_exec_schedule@deep-blt:
>     - shard-tglb:         [INCOMPLETE][92] ([fdo#111671]) ->
> [FAIL][93] ([fdo#111646]) +2 similar issues
>    [92]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb9/igt@gem_exec_schedule@deep-blt.html
>    [93]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb6/igt@gem_exec_schedule@deep-blt.html
> 
>   * igt@gem_exec_schedule@deep-bsd2:
>     - shard-tglb:         [FAIL][94] ([fdo#111646]) ->
> [INCOMPLETE][95] ([fdo#111671])
>    [94]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb7/igt@gem_exec_schedule@deep-bsd2.html
>    [95]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb7/igt@gem_exec_schedule@deep-bsd2.html
> 
>   * igt@gem_persistent_relocs@forked-thrash-inactive:
>     - shard-apl:          [DMESG-FAIL][96] -> [TIMEOUT][97]
> ([fdo#112113])
>    [96]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-apl6/igt@gem_persistent_relocs@forked-thrash-inactive.html
>    [97]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-apl1/igt@gem_persistent_relocs@forked-thrash-inactive.html
> 
>   * igt@i915_pm_dc@dc6-dpms:
>     - shard-kbl:          [FAIL][98] ([fdo#111830 ]) -> [SKIP][99]
> ([fdo#109271])
>    [98]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-kbl7/igt@i915_pm_dc@dc6-dpms.html
>    [99]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-kbl6/igt@i915_pm_dc@dc6-dpms.html
> 
>   * igt@kms_atomic_transition@6x-modeset-transitions-fencing:
>     - shard-tglb:         [SKIP][100] ([fdo#112016 ] / [fdo#112021 ])
> -> [SKIP][101] ([fdo#112021 ])
>    [100]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb8/igt@kms_atomic_transition@6x-modeset-transitions-fencing.html
>    [101]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb9/igt@kms_atomic_transition@6x-modeset-transitions-fencing.html
> 
>   * igt@kms_psr@psr2_suspend:
>     - shard-iclb:         [SKIP][102] ([fdo#109441]) -> [DMESG-
> WARN][103] ([fdo#107724])
>    [102]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-iclb4/igt@kms_psr@psr2_suspend.html
>    [103]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-iclb2/igt@kms_psr@psr2_suspend.html
>     - shard-tglb:         [DMESG-WARN][104] ([fdo#111600]) ->
> [INCOMPLETE][105] ([fdo#111832] / [fdo#111850])
>    [104]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5285/shard-tglb9/igt@kms_psr@psr2_suspend.html
>    [105]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/shard-tglb7/igt@kms_psr@psr2_suspend.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when
> computing
>           the status of the difference (SUCCESS, WARNING, or
> FAILURE).
> 
>   [fdo# 112000 ]: https://bugs.freedesktop.org/show_bug.cgi?id=
> 112000 
>   [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
>   [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
>   [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
>   [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411
>   [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
>   [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
>   [fdo#109271]:
> 
> == Logs ==
> 
> For more details see: 
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3708/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2019-11-18 18:18 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-14 22:45 [igt-dev] [PATCH i-g-t CI 1/4] lib/igt_psr: Unset errno when expected José Roberto de Souza
2019-11-14 22:45 ` [igt-dev] [PATCH i-g-t CI 2/4] tests/i915_pm_dc: Use psr_sink_support instead of reimplement it again José Roberto de Souza
2019-11-14 22:45 ` [igt-dev] [PATCH i-g-t CI 3/4] tests/i915_pm_dc: Simplify runtime pm handling José Roberto de Souza
2019-11-14 22:45 ` [igt-dev] [PATCH i-g-t CI 4/4] lib/igt_psr: Move "is enabled" implementation to lib José Roberto de Souza
2019-11-14 23:45 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [i-g-t,CI,1/4] lib/igt_psr: Unset errno when expected Patchwork
2019-11-15  8:31 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2019-11-16  5:15 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2019-11-18 18:18   ` Souza, Jose

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