* [igt-dev] [PATCH i-g-t] tests/kms_plane_multiple.c: Enhance the IGT test to enable multiple planes and multiple pipe.
@ 2019-04-24 9:38 Nidhi Gupta
2019-04-24 11:34 ` Juha-Pekka Heikkila
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Nidhi Gupta @ 2019-04-24 9:38 UTC (permalink / raw)
To: igt-dev; +Cc: Nidhi Gupta, juha-pekka.heikkila
In Existing kms_plane_multiple we are testing Multiple plane position on
one pipe at a time, we do not have a testcase where all the pipes are
enabled at the same time and checking for the plane positions.
Adding a subtest with all the pipes enabled and performing a test to
check the multiple plane positions with all the pipes at the same time. Clearing
of the resources are done after performing plane position test on all pipes.
Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com>
---
tests/kms_plane_multiple.c | 71 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 71 insertions(+)
diff --git a/tests/kms_plane_multiple.c b/tests/kms_plane_multiple.c
index d2d02a5..c11de9d 100644
--- a/tests/kms_plane_multiple.c
+++ b/tests/kms_plane_multiple.c
@@ -299,6 +299,52 @@ test_plane_position_with_output(data_t *data, enum pipe pipe,
}
static void
+test_multiple_plane_position_with_output(data_t *data, enum pipe pipe,
+ igt_output_t *output, int n_planes,
+ uint64_t tiling)
+{
+ color_t blue = { 0.0f, 0.0f, 1.0f };
+ igt_crc_t crc;
+ int i;
+ int iterations = opt.iterations < 1 ? 1 : opt.iterations;
+ bool loop_forever;
+ char info[256];
+
+ if (opt.iterations == LOOP_FOREVER) {
+ loop_forever = true;
+ sprintf(info, "forever");
+ } else {
+ loop_forever = false;
+ sprintf(info, "for %d %s",
+ iterations, iterations > 1 ? "iterations" : "iteration");
+ }
+
+ igt_info("Testing connector %s using pipe %s with %d planes %s with seed %d\n",
+ igt_output_name(output), kmstest_pipe_name(pipe), n_planes,
+ info, opt.seed);
+
+ test_init(data, pipe, n_planes);
+
+ test_grab_crc(data, output, pipe, &blue, tiling);
+
+ i = 0;
+ while (i < iterations || loop_forever) {
+ prepare_planes(data, pipe, &blue, tiling, n_planes, output);
+
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ igt_pipe_crc_get_current(data->display.drm_fd, data->pipe_crc, &crc);
+
+ igt_assert_crc_equal(&data->ref_crc, &crc);
+
+ i++;
+ }
+
+ //test_fini(data, output, n_planes);
+}
+
+
+static void
test_plane_position(data_t *data, enum pipe pipe, uint64_t tiling)
{
igt_output_t *output;
@@ -317,6 +363,25 @@ test_plane_position(data_t *data, enum pipe pipe, uint64_t tiling)
}
static void
+test_multiple_plane_position(data_t *data, enum pipe pipe, uint64_t tiling)
+{
+ igt_output_t *output;
+ int n_planes = data->display.pipes[pipe].n_planes;
+
+ output = igt_get_single_output_for_pipe(&data->display, pipe);
+ igt_require(output);
+
+ if (!opt.user_seed)
+ opt.seed = time(NULL);
+
+ srand(opt.seed);
+
+ test_multiple_plane_position_with_output(data, pipe, output,
+ n_planes, tiling);
+}
+
+
+static void
run_tests_for_pipe(data_t *data, enum pipe pipe)
{
igt_fixture {
@@ -393,6 +458,12 @@ int main(int argc, char *argv[])
run_tests_for_pipe(&data, pipe);
}
+ igt_subtest_f("atomic-maximum-pipes-tiling-none") {
+ for_each_pipe_static(pipe)
+ test_multiple_plane_position(&data, pipe, LOCAL_DRM_FORMAT_MOD_NONE);
+ }
+
+
igt_fixture {
igt_display_fini(&data.display);
}
--
2.7.4
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [igt-dev] [PATCH i-g-t] tests/kms_plane_multiple.c: Enhance the IGT test to enable multiple planes and multiple pipe. 2019-04-24 9:38 [igt-dev] [PATCH i-g-t] tests/kms_plane_multiple.c: Enhance the IGT test to enable multiple planes and multiple pipe Nidhi Gupta @ 2019-04-24 11:34 ` Juha-Pekka Heikkila 2019-04-24 13:49 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-04-24 19:50 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Juha-Pekka Heikkila @ 2019-04-24 11:34 UTC (permalink / raw) To: Nidhi Gupta, igt-dev; +Cc: juha-pekka.heikkila On 24.4.2019 12.38, Nidhi Gupta wrote: > In Existing kms_plane_multiple we are testing Multiple plane position on > one pipe at a time, we do not have a testcase where all the pipes are > enabled at the same time and checking for the plane positions. > > Adding a subtest with all the pipes enabled and performing a test to > check the multiple plane positions with all the pipes at the same time. Clearing > of the resources are done after performing plane position test on all pipes. ^^ Clearing of resources I didn't see after the test > > Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com> > --- > tests/kms_plane_multiple.c | 71 ++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 71 insertions(+) > > diff --git a/tests/kms_plane_multiple.c b/tests/kms_plane_multiple.c > index d2d02a5..c11de9d 100644 > --- a/tests/kms_plane_multiple.c > +++ b/tests/kms_plane_multiple.c > @@ -299,6 +299,52 @@ test_plane_position_with_output(data_t *data, enum pipe pipe, > } > > static void > +test_multiple_plane_position_with_output(data_t *data, enum pipe pipe, > + igt_output_t *output, int n_planes, > + uint64_t tiling) > +{ > + color_t blue = { 0.0f, 0.0f, 1.0f }; > + igt_crc_t crc; > + int i; > + int iterations = opt.iterations < 1 ? 1 : opt.iterations; > + bool loop_forever; > + char info[256]; > + > + if (opt.iterations == LOOP_FOREVER) { > + loop_forever = true; > + sprintf(info, "forever"); > + } else { > + loop_forever = false; > + sprintf(info, "for %d %s", > + iterations, iterations > 1 ? "iterations" : "iteration"); > + } This looping code I think is just harmful here, I don't know if it's of any use for your subtest and if you want to do possibility for looping for this test this is wrong place for that as this would just loop on one pipe. > + > + igt_info("Testing connector %s using pipe %s with %d planes %s with seed %d\n", > + igt_output_name(output), kmstest_pipe_name(pipe), n_planes, > + info, opt.seed); Does this printout make sense here? > + > + test_init(data, pipe, n_planes); > + > + test_grab_crc(data, output, pipe, &blue, tiling); > + > + i = 0; > + while (i < iterations || loop_forever) { > + prepare_planes(data, pipe, &blue, tiling, n_planes, output); > + > + igt_display_commit2(&data->display, COMMIT_ATOMIC); > + > + igt_pipe_crc_get_current(data->display.drm_fd, data->pipe_crc, &crc); > + > + igt_assert_crc_equal(&data->ref_crc, &crc); > + > + i++; > + } > + > + //test_fini(data, output, n_planes); Don't leave these commented out things. :) Here at minimum I think you'll need to stop crc collection which was started at test_init, otherwise you'll get errors in dmesg about userspace reading too slow if crc buffer becomes full. For testing purpose it would be better to get crc's after you've enabled maximum amount of pipes, that's when you'd see if there are anomalies which crc could catch. > +} > + > + > +static void > test_plane_position(data_t *data, enum pipe pipe, uint64_t tiling) > { > igt_output_t *output; > @@ -317,6 +363,25 @@ test_plane_position(data_t *data, enum pipe pipe, uint64_t tiling) > } > > static void > +test_multiple_plane_position(data_t *data, enum pipe pipe, uint64_t tiling) > +{ > + igt_output_t *output; > + int n_planes = data->display.pipes[pipe].n_planes; > + > + output = igt_get_single_output_for_pipe(&data->display, pipe); > + igt_require(output); > + > + if (!opt.user_seed) > + opt.seed = time(NULL); > + > + srand(opt.seed); > + > + test_multiple_plane_position_with_output(data, pipe, output, > + n_planes, tiling); > +} > + > + > +static void > run_tests_for_pipe(data_t *data, enum pipe pipe) > { > igt_fixture { > @@ -393,6 +458,12 @@ int main(int argc, char *argv[]) > run_tests_for_pipe(&data, pipe); > } > > + igt_subtest_f("atomic-maximum-pipes-tiling-none") { > + for_each_pipe_static(pipe) > + test_multiple_plane_position(&data, pipe, LOCAL_DRM_FORMAT_MOD_NONE); ^^ intendation You'll need to enumerate outputs here in some way. Now if you have three pipes and two displays you'll get something funny when third pipe will be shown somewhere which will mean one of earlier enabled pipes will be disabled. > + } > + > + > igt_fixture { > igt_display_fini(&data.display); > } > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_multiple.c: Enhance the IGT test to enable multiple planes and multiple pipe. 2019-04-24 9:38 [igt-dev] [PATCH i-g-t] tests/kms_plane_multiple.c: Enhance the IGT test to enable multiple planes and multiple pipe Nidhi Gupta 2019-04-24 11:34 ` Juha-Pekka Heikkila @ 2019-04-24 13:49 ` Patchwork 2019-04-24 19:50 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2019-04-24 13:49 UTC (permalink / raw) To: Nidhi Gupta; +Cc: igt-dev == Series Details == Series: tests/kms_plane_multiple.c: Enhance the IGT test to enable multiple planes and multiple pipe. URL : https://patchwork.freedesktop.org/series/59867/ State : success == Summary == CI Bug Log - changes from CI_DRM_5985 -> IGTPW_2910 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/59867/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_2910 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s4-devices: - fi-icl-y: [PASS][1] -> [DMESG-WARN][2] ([fdo#109638]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/fi-icl-y/igt@gem_exec_suspend@basic-s4-devices.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/fi-icl-y/igt@gem_exec_suspend@basic-s4-devices.html * igt@i915_pm_rpm@basic-pci-d3-state: - fi-hsw-4770: [PASS][3] -> [SKIP][4] ([fdo#109271]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_selftest@live_guc: - fi-icl-y: [PASS][5] -> [INCOMPLETE][6] ([fdo#107713]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/fi-icl-y/igt@i915_selftest@live_guc.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/fi-icl-y/igt@i915_selftest@live_guc.html * igt@kms_chamelium@dp-crc-fast: - fi-kbl-7500u: [PASS][7] -> [DMESG-WARN][8] ([fdo#103841]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3: - fi-blb-e6850: [INCOMPLETE][9] ([fdo#107718]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html * igt@i915_selftest@live_contexts: - fi-bdw-gvtdvm: [DMESG-FAIL][11] ([fdo#110235 ]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/fi-bdw-gvtdvm/igt@i915_selftest@live_contexts.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/fi-bdw-gvtdvm/igt@i915_selftest@live_contexts.html - fi-skl-gvtdvm: [DMESG-FAIL][13] ([fdo#110235 ]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/fi-skl-gvtdvm/igt@i915_selftest@live_contexts.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/fi-skl-gvtdvm/igt@i915_selftest@live_contexts.html * igt@kms_frontbuffer_tracking@basic: - fi-byt-clapper: [FAIL][15] ([fdo#103167]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/fi-byt-clapper/igt@kms_frontbuffer_tracking@basic.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/fi-byt-clapper/igt@kms_frontbuffer_tracking@basic.html [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103841]: https://bugs.freedesktop.org/show_bug.cgi?id=103841 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109638]: https://bugs.freedesktop.org/show_bug.cgi?id=109638 [fdo#110235 ]: https://bugs.freedesktop.org/show_bug.cgi?id=110235 Participating hosts (47 -> 43) ------------------------------ Additional (1): fi-pnv-d510 Missing (5): fi-kbl-soraka fi-ilk-m540 fi-bsw-cyan fi-ctg-p8600 fi-bdw-samus Build changes ------------- * IGT: IGT_4962 -> IGTPW_2910 CI_DRM_5985: 393f6b207be59d198f113aea221342b1916b76cf @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_2910: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/ IGT_4962: c48dba1d65bbe7047b616c13eb4f99c3bdc323a9 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@kms_plane_multiple@atomic-maximum-pipes-tiling-none == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_plane_multiple.c: Enhance the IGT test to enable multiple planes and multiple pipe. 2019-04-24 9:38 [igt-dev] [PATCH i-g-t] tests/kms_plane_multiple.c: Enhance the IGT test to enable multiple planes and multiple pipe Nidhi Gupta 2019-04-24 11:34 ` Juha-Pekka Heikkila 2019-04-24 13:49 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2019-04-24 19:50 ` Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2019-04-24 19:50 UTC (permalink / raw) To: Nidhi Gupta; +Cc: igt-dev == Series Details == Series: tests/kms_plane_multiple.c: Enhance the IGT test to enable multiple planes and multiple pipe. URL : https://patchwork.freedesktop.org/series/59867/ State : success == Summary == CI Bug Log - changes from CI_DRM_5985_full -> IGTPW_2910_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/59867/revisions/1/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_2910_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_plane_multiple@atomic-maximum-pipes-tiling-none} (NEW): - shard-iclb: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-iclb6/igt@kms_plane_multiple@atomic-maximum-pipes-tiling-none.html New tests --------- New tests have been introduced between CI_DRM_5985_full and IGTPW_2910_full: ### New IGT tests (1) ### * igt@kms_plane_multiple@atomic-maximum-pipes-tiling-none: - Statuses : 6 skip(s) - Exec time: [0.35, 2.70] s Known issues ------------ Here are the changes found in IGTPW_2910_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_tiled_swapping@non-threaded: - shard-iclb: [PASS][2] -> [INCOMPLETE][3] ([fdo#107713] / [fdo#108686]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-iclb5/igt@gem_tiled_swapping@non-threaded.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-iclb3/igt@gem_tiled_swapping@non-threaded.html - shard-hsw: [PASS][4] -> [FAIL][5] ([fdo#108686]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-hsw2/igt@gem_tiled_swapping@non-threaded.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-hsw2/igt@gem_tiled_swapping@non-threaded.html * igt@i915_suspend@debugfs-reader: - shard-apl: [PASS][6] -> [DMESG-WARN][7] ([fdo#108566]) +7 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-apl8/igt@i915_suspend@debugfs-reader.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-apl5/igt@i915_suspend@debugfs-reader.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-glk: [PASS][8] -> [FAIL][9] ([fdo#106509] / [fdo#107409]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-glk9/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-glk5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-glk: [PASS][10] -> [FAIL][11] ([fdo#102670]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-iclb: [PASS][12] -> [FAIL][13] ([fdo#103167]) +5 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-iclb: [PASS][14] -> [SKIP][15] ([fdo#109441]) +2 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-iclb3/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_universal_plane@universal-plane-pipe-c-functional: - shard-apl: [PASS][16] -> [FAIL][17] ([fdo#110037]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-apl1/igt@kms_universal_plane@universal-plane-pipe-c-functional.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-apl3/igt@kms_universal_plane@universal-plane-pipe-c-functional.html #### Possible fixes #### * igt@kms_cursor_crc@cursor-256x256-random: - shard-apl: [FAIL][18] ([fdo#103232]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-apl2/igt@kms_cursor_crc@cursor-256x256-random.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-apl7/igt@kms_cursor_crc@cursor-256x256-random.html - shard-kbl: [FAIL][20] ([fdo#103232]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-kbl6/igt@kms_cursor_crc@cursor-256x256-random.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-kbl5/igt@kms_cursor_crc@cursor-256x256-random.html * igt@kms_cursor_edge_walk@pipe-b-256x256-top-edge: - shard-apl: [INCOMPLETE][22] ([fdo#103927]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-apl8/igt@kms_cursor_edge_walk@pipe-b-256x256-top-edge.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-apl3/igt@kms_cursor_edge_walk@pipe-b-256x256-top-edge.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-glk: [FAIL][24] ([fdo#105363]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-kbl: [FAIL][26] ([fdo#103167]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html - shard-apl: [FAIL][28] ([fdo#103167]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-apl5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-apl3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-iclb: [FAIL][30] ([fdo#103167]) -> [PASS][31] +3 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_plane@pixel-format-pipe-b-planes-source-clamping: - shard-glk: [SKIP][32] ([fdo#109271]) -> [PASS][33] +2 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-glk1/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-glk9/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-apl: [DMESG-WARN][34] ([fdo#108566]) -> [PASS][35] +2 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-iclb: [FAIL][36] ([fdo#103166]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-x.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-iclb1/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_psr2_su@page_flip: - shard-iclb: [SKIP][38] ([fdo#109642]) -> [PASS][39] [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-iclb7/igt@kms_psr2_su@page_flip.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-iclb2/igt@kms_psr2_su@page_flip.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-kbl: [DMESG-FAIL][40] ([fdo#105763]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-kbl6/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-kbl1/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-kbl: [FAIL][42] ([fdo#109016]) -> [PASS][43] [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-kbl2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-kbl5/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_setmode@basic: - shard-apl: [FAIL][44] ([fdo#99912]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_5985/shard-apl3/igt@kms_setmode@basic.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/shard-apl2/igt@kms_setmode@basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#102670]: https://bugs.freedesktop.org/show_bug.cgi?id=102670 [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#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363 [fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763 [fdo#106509]: https://bugs.freedesktop.org/show_bug.cgi?id=106509 [fdo#107409]: https://bugs.freedesktop.org/show_bug.cgi?id=107409 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686 [fdo#109016]: https://bugs.freedesktop.org/show_bug.cgi?id=109016 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110037]: https://bugs.freedesktop.org/show_bug.cgi?id=110037 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 Participating hosts (10 -> 6) ------------------------------ Missing (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 Build changes ------------- * IGT: IGT_4962 -> IGTPW_2910 * Piglit: piglit_4509 -> None CI_DRM_5985: 393f6b207be59d198f113aea221342b1916b76cf @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_2910: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2910/ IGT_4962: c48dba1d65bbe7047b616c13eb4f99c3bdc323a9 @ 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_2910/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-04-24 19:50 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-04-24 9:38 [igt-dev] [PATCH i-g-t] tests/kms_plane_multiple.c: Enhance the IGT test to enable multiple planes and multiple pipe Nidhi Gupta 2019-04-24 11:34 ` Juha-Pekka Heikkila 2019-04-24 13:49 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-04-24 19:50 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox