All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/kms_atomic_multi: new test
@ 2019-09-06 14:13 Simon Ser
  2019-09-06 15:52 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_atomic_multi: new test (rev2) Patchwork
  2019-09-06 19:37 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  0 siblings, 2 replies; 3+ messages in thread
From: Simon Ser @ 2019-09-06 14:13 UTC (permalink / raw)
  To: igt-dev

This test performs a single atomic commit on multiple CRTCs at once. The goal
is to check that a page-flip event for each CRTC is received.

I chose not to integrate this to an existing test, because kms_atomic is
basically a single function with lots of options. Integrating this test to
kms_atomic would mix up these two and make it difficult to understand the test.

Changes from RFC to v1:
- Added 1x, 3x, 4x tests
- Improve pipe allocation for outputs
- Handle multiple page-flip events for a single poll call
- Use TEST_ONLY to make sure the configuration we choose is supported

Signed-off-by: Simon Ser <simon.ser@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 tests/Makefile.sources   |   1 +
 tests/kms_atomic_multi.c | 206 +++++++++++++++++++++++++++++++++++++++
 tests/meson.build        |   1 +
 3 files changed, 208 insertions(+)
 create mode 100644 tests/kms_atomic_multi.c

diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index c02e4d9489f2..e08968d2b0fc 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -29,6 +29,7 @@ TESTS_progs = \
 	kms_atomic \
 	kms_atomic_interruptible \
 	kms_atomic_transition \
+	kms_atomic_multi \
 	kms_available_modes_crc \
 	kms_big_fb \
 	kms_busy \
diff --git a/tests/kms_atomic_multi.c b/tests/kms_atomic_multi.c
new file mode 100644
index 000000000000..dd4dc66a9952
--- /dev/null
+++ b/tests/kms_atomic_multi.c
@@ -0,0 +1,206 @@
+/*
+ * Copyright © 2018 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ *
+ * Authors: Simon Ser <simon.ser@intel.com>
+ */
+
+#include <poll.h>
+#include <drm_mode.h>
+#include <drm_fourcc.h>
+#include "igt.h"
+
+#define MAX_OUTPUTS 4
+
+struct test_connector {
+	igt_output_t *output;
+	struct igt_fb fb;
+	drmModeConnectorPtr connector;
+	enum pipe pipe;
+	bool got_page_flip;
+};
+
+struct test_data {
+	int drm_fd;
+	igt_display_t *display;
+	struct test_connector conns[MAX_OUTPUTS];
+	size_t conns_len;
+};
+
+static void create_and_set_fb(struct test_data *data,
+			      struct test_connector *conn)
+{
+	igt_plane_t *primary;
+	drmModeModeInfo *mode;
+
+	mode = igt_output_get_mode(conn->output);
+	igt_create_pattern_fb(data->drm_fd, mode->hdisplay, mode->vdisplay,
+			      DRM_FORMAT_XBGR8888, LOCAL_DRM_FORMAT_MOD_NONE,
+			      &conn->fb);
+
+	primary = igt_output_get_plane_type(conn->output, DRM_PLANE_TYPE_PRIMARY);
+	igt_assert(primary);
+
+	igt_plane_set_fb(primary, &conn->fb);
+}
+
+static void pick_n_outputs(struct test_data *data, size_t n)
+{
+	igt_output_t *output;
+	struct test_connector *conn;
+	enum pipe pipe;
+	int ret;
+
+	assert(n <= MAX_OUTPUTS);
+
+	for_each_connected_output(data->display, output)
+		igt_output_set_pipe(output, PIPE_NONE);
+
+	data->conns_len = 0;
+	for_each_pipe(data->display, pipe) {
+		for_each_valid_output_on_pipe(data->display, pipe, output) {
+			if (output->pending_pipe != PIPE_NONE)
+				continue;
+			if (data->conns_len >= n)
+				break;
+
+			conn = &data->conns[data->conns_len];
+			conn->output = output;
+			conn->pipe = pipe;
+			igt_output_set_pipe(output, conn->pipe);
+			data->conns_len++;
+			break;
+		}
+	}
+
+	igt_skip_on_f(data->conns_len < n,
+		      "Failed to find enough outputs with separate pipes: "
+		      "wanted %zu, got %zu\n",
+		      n, data->conns_len);
+	ret = igt_display_try_commit_atomic(data->display,
+					    DRM_MODE_ATOMIC_TEST_ONLY |
+					    DRM_MODE_ATOMIC_ALLOW_MODESET,
+					    NULL);
+	igt_skip_on_f(ret == -EINVAL || ret == -ERANGE,
+		      "Atomic test commit failed with %zu outputs: %d\n",
+		      n, ret);
+	igt_assert_f(ret == 0, "Atomic test commit failed: %d\n", ret);
+}
+
+static bool got_all_page_flips(struct test_data *data)
+{
+	size_t i;
+
+	for (i = 0; i < data->conns_len; i++) {
+		if (!data->conns[i].got_page_flip)
+			return false;
+	}
+
+	return true;
+}
+
+static void page_flip_handler(int fd, unsigned seq, unsigned tv_sec,
+			      unsigned tv_usec, unsigned crtc_id, void *_data)
+{
+	struct test_data *data = _data;
+	struct test_connector *conn;
+	size_t i;
+
+	igt_debug("Got page-flip event for CRTC %u\n", crtc_id);
+
+	for (i = 0; i < data->conns_len; i++) {
+		conn = &data->conns[i];
+		if (data->display->pipes[conn->pipe].crtc_id == crtc_id) {
+			igt_assert_f(!conn->got_page_flip,
+				     "Got two page-flips for CRTC %u\n",
+				     crtc_id);
+			conn->got_page_flip = true;
+			return;
+		}
+	}
+
+	igt_assert_f(false, "Got page-flip event for unexpected CRTC %u\n",
+		     crtc_id);
+}
+
+IGT_TEST_DESCRIPTION("Atomic commits on multiple CRTCs at a time");
+igt_main
+{
+	int ret;
+	struct test_data data = {0};
+	igt_display_t display;
+	struct pollfd pfd = {0};
+	drmEventContext drm_event = {0};
+	size_t n, i;
+
+	igt_fixture {
+		data.drm_fd = drm_open_driver_master(DRIVER_ANY);
+		kmstest_set_vt_graphics_mode();
+		igt_display_require(&display, data.drm_fd);
+		igt_display_reset(&display);
+		igt_require(display.is_atomic);
+		data.display = &display;
+
+		pfd.fd = data.drm_fd;
+		pfd.events = POLLIN;
+
+		drm_event.version = 3;
+		drm_event.page_flip_handler2 = page_flip_handler;
+	}
+
+	for (n = 1; n <= MAX_OUTPUTS; n++) {
+		igt_describe_f("Pick %zu outputs, perform an atomic commit "
+			       "performing a page-flip on all of them, check "
+			       "we get correct page-flip events", n);
+		igt_subtest_f("%zux-flip", n) {
+			pick_n_outputs(&data, n);
+
+			igt_display_commit_atomic(data.display,
+						  DRM_MODE_ATOMIC_ALLOW_MODESET,
+						  NULL);
+
+			for (i = 0; i < n; i++) {
+				create_and_set_fb(&data, &data.conns[i]);
+			}
+
+			igt_display_commit_atomic(data.display,
+						  DRM_MODE_ATOMIC_NONBLOCK |
+						  DRM_MODE_PAGE_FLIP_EVENT,
+						  &data);
+
+			while (!got_all_page_flips(&data)) {
+				ret = poll(&pfd, 1, 1000);
+				igt_assert(ret == 1);
+				drmHandleEvent(data.drm_fd, &drm_event);
+			}
+
+			for (i = 0; i < n; i++) {
+				igt_remove_fb(data.drm_fd, &data.conns[i].fb);
+			}
+		}
+	}
+
+	igt_fixture {
+		close(data.drm_fd);
+		kmstest_restore_vt_mode();
+		igt_display_fini(data.display);
+	}
+}
diff --git a/tests/meson.build b/tests/meson.build
index a7b2b3221304..df00ab4a2f81 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -14,6 +14,7 @@ test_progs = [
 	'kms_atomic',
 	'kms_atomic_interruptible',
 	'kms_atomic_transition',
+	'kms_atomic_multi',
 	'kms_available_modes_crc',
 	'kms_big_fb',
 	'kms_busy',
--
2.23.0

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_atomic_multi: new test (rev2)
  2019-09-06 14:13 [igt-dev] [PATCH i-g-t] tests/kms_atomic_multi: new test Simon Ser
@ 2019-09-06 15:52 ` Patchwork
  2019-09-06 19:37 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2019-09-06 15:52 UTC (permalink / raw)
  To: Ser, Simon; +Cc: igt-dev

== Series Details ==

Series: tests/kms_atomic_multi: new test (rev2)
URL   : https://patchwork.freedesktop.org/series/66288/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6843 -> IGTPW_3425
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/66288/revisions/2/mbox/

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

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

### IGT changes ###

#### Suppressed ####

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

  * igt@gem_sync@basic-each:
    - {fi-tgl-u}:         [FAIL][1] ([fdo#111562]) -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/fi-tgl-u/igt@gem_sync@basic-each.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/fi-tgl-u/igt@gem_sync@basic-each.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_chamelium@dp-crc-fast:
    - fi-cml-u2:          [PASS][3] -> [FAIL][4] ([fdo#110627])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/fi-cml-u2/igt@kms_chamelium@dp-crc-fast.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/fi-cml-u2/igt@kms_chamelium@dp-crc-fast.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-icl-u2:          [PASS][5] -> [FAIL][6] ([fdo#103167])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html

  * igt@prime_busy@basic-wait-after-default:
    - fi-icl-u3:          [PASS][7] -> [DMESG-WARN][8] ([fdo#107724]) +1 similar issue
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/fi-icl-u3/igt@prime_busy@basic-wait-after-default.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/fi-icl-u3/igt@prime_busy@basic-wait-after-default.html

  
#### Possible fixes ####

  * igt@i915_selftest@live_hangcheck:
    - {fi-icl-guc}:       [INCOMPLETE][9] ([fdo#107713] / [fdo#108569]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/fi-icl-guc/igt@i915_selftest@live_hangcheck.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/fi-icl-guc/igt@i915_selftest@live_hangcheck.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [FAIL][11] ([fdo#111096]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html

  * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
    - {fi-icl-dsi}:       [DMESG-WARN][13] ([fdo#106107]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/fi-icl-dsi/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/fi-icl-dsi/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html

  
#### Warnings ####

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-icl-u2:          [FAIL][15] ([fdo#109483]) -> [DMESG-WARN][16] ([fdo#102505] / [fdo#110390])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/fi-icl-u2/igt@kms_chamelium@common-hpd-after-suspend.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/fi-icl-u2/igt@kms_chamelium@common-hpd-after-suspend.html

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

  [fdo#102505]: https://bugs.freedesktop.org/show_bug.cgi?id=102505
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107
  [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#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483
  [fdo#110390]: https://bugs.freedesktop.org/show_bug.cgi?id=110390
  [fdo#110627]: https://bugs.freedesktop.org/show_bug.cgi?id=110627
  [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
  [fdo#111562]: https://bugs.freedesktop.org/show_bug.cgi?id=111562


Participating hosts (54 -> 47)
------------------------------

  Missing    (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5172 -> IGTPW_3425

  CI-20190529: 20190529
  CI_DRM_6843: 440106a45341b24008a3a989a0b96dd046f72589 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3425: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/
  IGT_5172: 073caf4acb7cac63abe7a5e1409ea27a764db5fd @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@kms_atomic_multi@1x-flip
+igt@kms_atomic_multi@2x-flip
+igt@kms_atomic_multi@3x-flip
+igt@kms_atomic_multi@4x-flip

== Logs ==

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_atomic_multi: new test (rev2)
  2019-09-06 14:13 [igt-dev] [PATCH i-g-t] tests/kms_atomic_multi: new test Simon Ser
  2019-09-06 15:52 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_atomic_multi: new test (rev2) Patchwork
@ 2019-09-06 19:37 ` Patchwork
  1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2019-09-06 19:37 UTC (permalink / raw)
  To: Ser, Simon; +Cc: igt-dev

== Series Details ==

Series: tests/kms_atomic_multi: new test (rev2)
URL   : https://patchwork.freedesktop.org/series/66288/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6843_full -> IGTPW_3425_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/66288/revisions/2/mbox/

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@kms_atomic_multi@4x-flip} (NEW):
    - shard-iclb:         NOTRUN -> [SKIP][1] +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-iclb2/igt@kms_atomic_multi@4x-flip.html

  
New tests
---------

  New tests have been introduced between CI_DRM_6843_full and IGTPW_3425_full:

### New IGT tests (4) ###

  * igt@kms_atomic_multi@1x-flip:
    - Statuses : 6 pass(s)
    - Exec time: [0.07, 0.32] s

  * igt@kms_atomic_multi@2x-flip:
    - Statuses : 2 pass(s) 4 skip(s)
    - Exec time: [0.0, 0.30] s

  * igt@kms_atomic_multi@3x-flip:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_atomic_multi@4x-flip:
    - Statuses : 6 skip(s)
    - Exec time: [0.0, 0.00] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_eio@suspend:
    - shard-hsw:          [PASS][2] -> [FAIL][3] ([fdo#111550])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-hsw1/igt@gem_eio@suspend.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-hsw2/igt@gem_eio@suspend.html

  * igt@gem_exec_schedule@preempt-bsd1:
    - shard-iclb:         [PASS][4] -> [SKIP][5] ([fdo#109276]) +21 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-iclb2/igt@gem_exec_schedule@preempt-bsd1.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-iclb8/igt@gem_exec_schedule@preempt-bsd1.html

  * igt@gem_exec_schedule@preemptive-hang-bsd:
    - shard-iclb:         [PASS][6] -> [SKIP][7] ([fdo#111325]) +4 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-iclb7/igt@gem_exec_schedule@preemptive-hang-bsd.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-iclb4/igt@gem_exec_schedule@preemptive-hang-bsd.html

  * igt@gem_mocs_settings@mocs-rc6-blt:
    - shard-apl:          [PASS][8] -> [SKIP][9] ([fdo#109271])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-apl7/igt@gem_mocs_settings@mocs-rc6-blt.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-apl8/igt@gem_mocs_settings@mocs-rc6-blt.html

  * igt@i915_pm_rpm@gem-mmap-gtt:
    - shard-hsw:          [PASS][10] -> [FAIL][11] ([fdo#111548]) +7 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-hsw7/igt@i915_pm_rpm@gem-mmap-gtt.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-hsw2/igt@i915_pm_rpm@gem-mmap-gtt.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-apl:          [PASS][12] -> [DMESG-WARN][13] ([fdo#108566]) +3 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-apl4/igt@i915_suspend@fence-restore-tiled2untiled.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@i915_suspend@forcewake:
    - shard-hsw:          [PASS][14] -> [FAIL][15] ([fdo#103375]) +7 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-hsw7/igt@i915_suspend@forcewake.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-hsw2/igt@i915_suspend@forcewake.html

  * igt@kms_flip_tiling@flip-to-x-tiled:
    - shard-iclb:         [PASS][16] -> [FAIL][17] ([fdo#108134])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-iclb5/igt@kms_flip_tiling@flip-to-x-tiled.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-iclb7/igt@kms_flip_tiling@flip-to-x-tiled.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
    - shard-iclb:         [PASS][18] -> [FAIL][19] ([fdo#103167]) +3 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html

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

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [PASS][22] -> [SKIP][23] ([fdo#109441]) +3 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend:
    - shard-apl:          [PASS][24] -> [FAIL][25] ([fdo#103375]) +1 similar issue
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-apl8/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-apl8/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html

  * igt@perf_pmu@semaphore-wait-bcs0:
    - shard-apl:          [PASS][26] -> [FAIL][27] ([fdo#111545]) +5 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-apl7/igt@perf_pmu@semaphore-wait-bcs0.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-apl8/igt@perf_pmu@semaphore-wait-bcs0.html

  
#### Possible fixes ####

  * igt@gem_exec_schedule@pi-ringfull-bsd:
    - shard-iclb:         [SKIP][28] ([fdo#111325]) -> [PASS][29] +6 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-iclb1/igt@gem_exec_schedule@pi-ringfull-bsd.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-iclb3/igt@gem_exec_schedule@pi-ringfull-bsd.html

  * igt@gem_exec_schedule@preempt-other-bsd1:
    - shard-iclb:         [SKIP][30] ([fdo#109276]) -> [PASS][31] +14 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-iclb7/igt@gem_exec_schedule@preempt-other-bsd1.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-iclb4/igt@gem_exec_schedule@preempt-other-bsd1.html

  * igt@gem_mocs_settings@mocs-rc6-bsd1:
    - shard-apl:          [SKIP][32] ([fdo#109271]) -> [PASS][33]
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-apl5/igt@gem_mocs_settings@mocs-rc6-bsd1.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-apl5/igt@gem_mocs_settings@mocs-rc6-bsd1.html

  * igt@i915_pm_rpm@debugfs-forcewake-user:
    - shard-hsw:          [FAIL][34] ([fdo#111548]) -> [PASS][35] +7 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-hsw2/igt@i915_pm_rpm@debugfs-forcewake-user.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-hsw7/igt@i915_pm_rpm@debugfs-forcewake-user.html

  * igt@i915_suspend@debugfs-reader:
    - shard-apl:          [DMESG-WARN][36] ([fdo#108566]) -> [PASS][37] +2 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-apl1/igt@i915_suspend@debugfs-reader.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-apl5/igt@i915_suspend@debugfs-reader.html

  * igt@kms_cursor_legacy@cursor-vs-flip-atomic:
    - shard-hsw:          [FAIL][38] ([fdo#103355]) -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-hsw1/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-glk:          [FAIL][40] ([fdo#105363]) -> [PASS][41]
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-glk7/igt@kms_flip@flip-vs-expired-vblank.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-glk7/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
    - shard-iclb:         [FAIL][42] ([fdo#103167]) -> [PASS][43] +3 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-kbl:          [INCOMPLETE][44] ([fdo#103665]) -> [PASS][45] +1 similar issue
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-kbl3/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
    - shard-hsw:          [FAIL][46] ([fdo#103375]) -> [PASS][47] +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-hsw2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-hsw7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html

  * igt@kms_plane_lowres@pipe-a-tiling-y:
    - shard-iclb:         [FAIL][48] ([fdo#103166]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-iclb1/igt@kms_plane_lowres@pipe-a-tiling-y.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-iclb5/igt@kms_plane_lowres@pipe-a-tiling-y.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [SKIP][50] ([fdo#109441]) -> [PASS][51] +2 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-iclb5/igt@kms_psr@psr2_cursor_render.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-iclb2/igt@kms_psr@psr2_cursor_render.html

  * igt@kms_setmode@basic:
    - shard-hsw:          [FAIL][52] ([fdo#99912]) -> [PASS][53]
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-hsw4/igt@kms_setmode@basic.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-hsw7/igt@kms_setmode@basic.html

  * igt@kms_vblank@pipe-b-ts-continuation-suspend:
    - shard-snb:          [FAIL][54] ([fdo#103375]) -> [PASS][55] +4 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-snb4/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-snb1/igt@kms_vblank@pipe-b-ts-continuation-suspend.html

  * igt@perf@short-reads:
    - shard-glk:          [FAIL][56] ([fdo#103183]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-glk4/igt@perf@short-reads.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-glk4/igt@perf@short-reads.html

  * igt@perf_pmu@busy-accuracy-98-vcs0:
    - shard-apl:          [FAIL][58] ([fdo#111545]) -> [PASS][59] +1 similar issue
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-apl5/igt@perf_pmu@busy-accuracy-98-vcs0.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-apl1/igt@perf_pmu@busy-accuracy-98-vcs0.html

  * igt@tools_test@tools_test:
    - shard-glk:          [SKIP][60] ([fdo#109271]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-glk1/igt@tools_test@tools_test.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-glk5/igt@tools_test@tools_test.html

  
#### Warnings ####

  * igt@i915_pm_rpm@modeset-lpsp-stress:
    - shard-hsw:          [SKIP][62] ([fdo#109271]) -> [FAIL][63] ([fdo#111548])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-hsw1/igt@i915_pm_rpm@modeset-lpsp-stress.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-hsw2/igt@i915_pm_rpm@modeset-lpsp-stress.html

  * igt@perf_pmu@cpu-hotplug:
    - shard-hsw:          [TIMEOUT][64] ([fdo#111546]) -> [INCOMPLETE][65] ([fdo#103540])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6843/shard-hsw2/igt@perf_pmu@cpu-hotplug.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/shard-hsw6/igt@perf_pmu@cpu-hotplug.html

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

  [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103183]: https://bugs.freedesktop.org/show_bug.cgi?id=103183
  [fdo#103355]: https://bugs.freedesktop.org/show_bug.cgi?id=103355
  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
  [fdo#108134]: https://bugs.freedesktop.org/show_bug.cgi?id=108134
  [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#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325
  [fdo#111545]: https://bugs.freedesktop.org/show_bug.cgi?id=111545
  [fdo#111546]: https://bugs.freedesktop.org/show_bug.cgi?id=111546
  [fdo#111548]: https://bugs.freedesktop.org/show_bug.cgi?id=111548
  [fdo#111550]: https://bugs.freedesktop.org/show_bug.cgi?id=111550
  [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912


Participating hosts (11 -> 6)
------------------------------

  Missing    (5): shard-skl pig-hsw-4770r pig-snb-2600 pig-glk-j5005 pig-skl-6260u 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5172 -> IGTPW_3425
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_6843: 440106a45341b24008a3a989a0b96dd046f72589 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3425: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3425/
  IGT_5172: 073caf4acb7cac63abe7a5e1409ea27a764db5fd @ 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_3425/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2019-09-06 19:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-06 14:13 [igt-dev] [PATCH i-g-t] tests/kms_atomic_multi: new test Simon Ser
2019-09-06 15:52 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_atomic_multi: new test (rev2) Patchwork
2019-09-06 19:37 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

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.