* [igt-dev] [i-g-t 1/2] tests/kms_cursor_edge_walk: Re-org dynamic subtests
@ 2023-02-10 4:24 Bhanuprakash Modem
2023-02-10 4:24 ` [igt-dev] [i-g-t 2/2] tests/kms_cursor_edge_walk: Limit the execution to two pipes Bhanuprakash Modem
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Bhanuprakash Modem @ 2023-02-10 4:24 UTC (permalink / raw)
To: igt-dev, karthik.b.s
Instead of clubbing all dynamic subtests, let's have an individual
subtest for each size & type.
Fixes: 54ff3199b (tests/kms_cursor_edge_walk: Convert tests to dynamic)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_cursor_edge_walk.c | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/tests/kms_cursor_edge_walk.c b/tests/kms_cursor_edge_walk.c
index e653b9ab9..96812776c 100644
--- a/tests/kms_cursor_edge_walk.c
+++ b/tests/kms_cursor_edge_walk.c
@@ -342,21 +342,21 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_display_require_output(&data.display);
}
- igt_describe("Checking cursor by walking left/right/top/bottom edge of screen");
- igt_subtest_group {
- for (i = 0; i < ARRAY_SIZE(tests); i++) {
- igt_subtest_with_dynamic(tests[i].name) {
+ for (i = 0; i < ARRAY_SIZE(tests); i++) {
+ for (data.curw = 64; data.curw <= 256; data.curw *= 2) {
+ data.curh = data.curw;
+ igt_fixture
+ igt_require(data.curw <= max_curw && data.curh <= max_curh);
+
+ igt_describe_f("Checking cursor size %dx%d by walking %s of screen",
+ data.curw, data.curh, tests[i].name);
+ igt_subtest_with_dynamic_f("%dx%d-%s", data.curw,
+ data.curh, tests[i].name) {
for_each_pipe_with_single_output(&data.display, data.pipe, data.output) {
- for (data.curw = 64; data.curw <= 256; data.curw *= 2) {
- data.curh = data.curw;
- igt_require(data.curw <= max_curw && data.curh <= max_curh);
-
- igt_dynamic_f("pipe-%s-%s-%dx%d",
- kmstest_pipe_name(data.pipe),
- data.output->name,
- data.curw, data.curh)
- test_crtc(&data, tests[i].flags);
- }
+ igt_dynamic_f("pipe-%s-%s",
+ kmstest_pipe_name(data.pipe),
+ data.output->name)
+ test_crtc(&data, tests[i].flags);
}
}
}
--
2.39.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* [igt-dev] [i-g-t 2/2] tests/kms_cursor_edge_walk: Limit the execution to two pipes 2023-02-10 4:24 [igt-dev] [i-g-t 1/2] tests/kms_cursor_edge_walk: Re-org dynamic subtests Bhanuprakash Modem @ 2023-02-10 4:24 ` Bhanuprakash Modem 2023-02-10 8:18 ` Karthik B S 2023-02-10 8:10 ` [igt-dev] [i-g-t 1/2] tests/kms_cursor_edge_walk: Re-org dynamic subtests Karthik B S ` (2 subsequent siblings) 3 siblings, 1 reply; 6+ messages in thread From: Bhanuprakash Modem @ 2023-02-10 4:24 UTC (permalink / raw) To: igt-dev, karthik.b.s; +Cc: Nidhi Gupta To optimize the test execution time, limit the execution to two (first & last) pipes. This patch will also provide an option (command line flag '--extended') to execute on all pipes. Example: ./kms_cursor_edge_walk --extended --run-subtest 64x64-left-edge Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com> --- tests/kms_cursor_edge_walk.c | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/tests/kms_cursor_edge_walk.c b/tests/kms_cursor_edge_walk.c index 96812776c..304c0ea8f 100644 --- a/tests/kms_cursor_edge_walk.c +++ b/tests/kms_cursor_edge_walk.c @@ -60,6 +60,10 @@ enum { EDGE_BOTTOM = 0x8, }; +static bool extended; +static enum pipe active_pipes[IGT_MAX_PIPES]; +static uint32_t last_pipe; + static void create_cursor_fb(data_t *data, int cur_w, int cur_h) { cairo_t *cr; @@ -284,6 +288,9 @@ static int opt_handler(int opt, int opt_index, void *_data) case 'd': data->disable = true; break; + case 'e': + extended = true; + break; case 'j': data->jump = true; break; @@ -300,12 +307,14 @@ static const struct option long_opts[] = { { .name = "colored", .val = 'c' }, { .name = "disable", .val = 'd'}, { .name = "jump", .val = 'j' }, + { .name = "extended", .val = 'e'}, {} }; static const char *help_str = " --colored\t\tUse a colored cursor (disables CRC checks)\n" " --disable\t\tDisable the cursor between each step\n" - " --jump\t\tJump the cursor to middle of the screen between each step)\n"; + " --jump\t\tJump the cursor to middle of the screen between each step)\n" + " --extended\t\tRun on all pipes.(Default it will Run only two pipes)\n"; igt_main_args("", long_opts, help_str, opt_handler, &data) { @@ -322,6 +331,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) igt_fixture { int ret; + enum pipe pipe; data.drm_fd = drm_open_driver_master(DRIVER_ANY); @@ -340,6 +350,12 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) igt_display_require(&data.display, data.drm_fd); igt_display_require_output(&data.display); + + /* Get active pipes. */ + last_pipe = 0; + for_each_pipe(&data.display, pipe) + active_pipes[last_pipe++] = pipe; + last_pipe--; } for (i = 0; i < ARRAY_SIZE(tests); i++) { @@ -353,6 +369,10 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) igt_subtest_with_dynamic_f("%dx%d-%s", data.curw, data.curh, tests[i].name) { for_each_pipe_with_single_output(&data.display, data.pipe, data.output) { + if (!extended && data.pipe != active_pipes[0] && + data.pipe != active_pipes[last_pipe]) + continue; + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data.pipe), data.output->name) -- 2.39.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [igt-dev] [i-g-t 2/2] tests/kms_cursor_edge_walk: Limit the execution to two pipes 2023-02-10 4:24 ` [igt-dev] [i-g-t 2/2] tests/kms_cursor_edge_walk: Limit the execution to two pipes Bhanuprakash Modem @ 2023-02-10 8:18 ` Karthik B S 0 siblings, 0 replies; 6+ messages in thread From: Karthik B S @ 2023-02-10 8:18 UTC (permalink / raw) To: Bhanuprakash Modem, igt-dev; +Cc: Nidhi Gupta On 2/10/2023 9:54 AM, Bhanuprakash Modem wrote: > To optimize the test execution time, limit the execution to > two (first & last) pipes. This patch will also provide an > option (command line flag '--extended') to execute on all > pipes. > > Example: > ./kms_cursor_edge_walk --extended --run-subtest 64x64-left-edge > > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com> Reviewed-by: Karthik B S <karthik.b.s@intel.com> > --- > tests/kms_cursor_edge_walk.c | 22 +++++++++++++++++++++- > 1 file changed, 21 insertions(+), 1 deletion(-) > > diff --git a/tests/kms_cursor_edge_walk.c b/tests/kms_cursor_edge_walk.c > index 96812776c..304c0ea8f 100644 > --- a/tests/kms_cursor_edge_walk.c > +++ b/tests/kms_cursor_edge_walk.c > @@ -60,6 +60,10 @@ enum { > EDGE_BOTTOM = 0x8, > }; > > +static bool extended; > +static enum pipe active_pipes[IGT_MAX_PIPES]; > +static uint32_t last_pipe; > + > static void create_cursor_fb(data_t *data, int cur_w, int cur_h) > { > cairo_t *cr; > @@ -284,6 +288,9 @@ static int opt_handler(int opt, int opt_index, void *_data) > case 'd': > data->disable = true; > break; > + case 'e': > + extended = true; > + break; > case 'j': > data->jump = true; > break; > @@ -300,12 +307,14 @@ static const struct option long_opts[] = { > { .name = "colored", .val = 'c' }, > { .name = "disable", .val = 'd'}, > { .name = "jump", .val = 'j' }, > + { .name = "extended", .val = 'e'}, > {} > }; > static const char *help_str = > " --colored\t\tUse a colored cursor (disables CRC checks)\n" > " --disable\t\tDisable the cursor between each step\n" > - " --jump\t\tJump the cursor to middle of the screen between each step)\n"; > + " --jump\t\tJump the cursor to middle of the screen between each step)\n" > + " --extended\t\tRun on all pipes.(Default it will Run only two pipes)\n"; > > igt_main_args("", long_opts, help_str, opt_handler, &data) > { > @@ -322,6 +331,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > > igt_fixture { > int ret; > + enum pipe pipe; > > data.drm_fd = drm_open_driver_master(DRIVER_ANY); > > @@ -340,6 +350,12 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > > igt_display_require(&data.display, data.drm_fd); > igt_display_require_output(&data.display); > + > + /* Get active pipes. */ > + last_pipe = 0; > + for_each_pipe(&data.display, pipe) > + active_pipes[last_pipe++] = pipe; > + last_pipe--; > } > > for (i = 0; i < ARRAY_SIZE(tests); i++) { > @@ -353,6 +369,10 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > igt_subtest_with_dynamic_f("%dx%d-%s", data.curw, > data.curh, tests[i].name) { > for_each_pipe_with_single_output(&data.display, data.pipe, data.output) { > + if (!extended && data.pipe != active_pipes[0] && > + data.pipe != active_pipes[last_pipe]) > + continue; > + > igt_dynamic_f("pipe-%s-%s", > kmstest_pipe_name(data.pipe), > data.output->name) ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [i-g-t 1/2] tests/kms_cursor_edge_walk: Re-org dynamic subtests 2023-02-10 4:24 [igt-dev] [i-g-t 1/2] tests/kms_cursor_edge_walk: Re-org dynamic subtests Bhanuprakash Modem 2023-02-10 4:24 ` [igt-dev] [i-g-t 2/2] tests/kms_cursor_edge_walk: Limit the execution to two pipes Bhanuprakash Modem @ 2023-02-10 8:10 ` Karthik B S 2023-02-10 15:22 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork 2023-02-10 22:22 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Karthik B S @ 2023-02-10 8:10 UTC (permalink / raw) To: Bhanuprakash Modem, igt-dev On 2/10/2023 9:54 AM, Bhanuprakash Modem wrote: > Instead of clubbing all dynamic subtests, let's have an individual > subtest for each size & type. > > Fixes: 54ff3199b (tests/kms_cursor_edge_walk: Convert tests to dynamic) > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Reviewed-by: Karthik B S <karthik.b.s@intel.com> > --- > tests/kms_cursor_edge_walk.c | 28 ++++++++++++++-------------- > 1 file changed, 14 insertions(+), 14 deletions(-) > > diff --git a/tests/kms_cursor_edge_walk.c b/tests/kms_cursor_edge_walk.c > index e653b9ab9..96812776c 100644 > --- a/tests/kms_cursor_edge_walk.c > +++ b/tests/kms_cursor_edge_walk.c > @@ -342,21 +342,21 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) > igt_display_require_output(&data.display); > } > > - igt_describe("Checking cursor by walking left/right/top/bottom edge of screen"); > - igt_subtest_group { > - for (i = 0; i < ARRAY_SIZE(tests); i++) { > - igt_subtest_with_dynamic(tests[i].name) { > + for (i = 0; i < ARRAY_SIZE(tests); i++) { > + for (data.curw = 64; data.curw <= 256; data.curw *= 2) { > + data.curh = data.curw; > + igt_fixture > + igt_require(data.curw <= max_curw && data.curh <= max_curh); > + > + igt_describe_f("Checking cursor size %dx%d by walking %s of screen", > + data.curw, data.curh, tests[i].name); > + igt_subtest_with_dynamic_f("%dx%d-%s", data.curw, > + data.curh, tests[i].name) { > for_each_pipe_with_single_output(&data.display, data.pipe, data.output) { > - for (data.curw = 64; data.curw <= 256; data.curw *= 2) { > - data.curh = data.curw; > - igt_require(data.curw <= max_curw && data.curh <= max_curh); > - > - igt_dynamic_f("pipe-%s-%s-%dx%d", > - kmstest_pipe_name(data.pipe), > - data.output->name, > - data.curw, data.curh) > - test_crtc(&data, tests[i].flags); > - } > + igt_dynamic_f("pipe-%s-%s", > + kmstest_pipe_name(data.pipe), > + data.output->name) > + test_crtc(&data, tests[i].flags); > } > } > } ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_cursor_edge_walk: Re-org dynamic subtests 2023-02-10 4:24 [igt-dev] [i-g-t 1/2] tests/kms_cursor_edge_walk: Re-org dynamic subtests Bhanuprakash Modem 2023-02-10 4:24 ` [igt-dev] [i-g-t 2/2] tests/kms_cursor_edge_walk: Limit the execution to two pipes Bhanuprakash Modem 2023-02-10 8:10 ` [igt-dev] [i-g-t 1/2] tests/kms_cursor_edge_walk: Re-org dynamic subtests Karthik B S @ 2023-02-10 15:22 ` Patchwork 2023-02-10 22:22 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-02-10 15:22 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4287 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/kms_cursor_edge_walk: Re-org dynamic subtests URL : https://patchwork.freedesktop.org/series/113868/ State : success == Summary == CI Bug Log - changes from CI_DRM_12723 -> IGTPW_8482 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/index.html Participating hosts (38 -> 36) ------------------------------ Missing (2): bat-kbl-2 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8482 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@write: - fi-blb-e6850: [PASS][1] -> [SKIP][2] ([fdo#109271]) +4 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/fi-blb-e6850/igt@fbdev@write.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/fi-blb-e6850/igt@fbdev@write.html #### Possible fixes #### * igt@i915_selftest@live@migrate: - {bat-atsm-1}: [DMESG-FAIL][3] ([i915#7699]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/bat-atsm-1/igt@i915_selftest@live@migrate.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/bat-atsm-1/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@reset: - {bat-rpls-2}: [ABORT][5] ([i915#4983]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/bat-rpls-2/igt@i915_selftest@live@reset.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/bat-rpls-2/igt@i915_selftest@live@reset.html #### Warnings #### * igt@i915_selftest@live@execlists: - fi-kbl-soraka: [INCOMPLETE][7] ([i915#7156] / [i915#7913]) -> [INCOMPLETE][8] ([i915#7913]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/fi-kbl-soraka/igt@i915_selftest@live@execlists.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/fi-kbl-soraka/igt@i915_selftest@live@execlists.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997 [i915#7156]: https://gitlab.freedesktop.org/drm/intel/issues/7156 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7155 -> IGTPW_8482 CI-20190529: 20190529 CI_DRM_12723: f07c78a0aa8293873119176b462f58f21b74baf6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8482: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/index.html IGT_7155: 75c508d4e19c65683d4060cb3a772df600aaf23e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_cursor_edge_walk@64x64-left-edge +igt@kms_cursor_edge_walk@64x64-right-edge +igt@kms_cursor_edge_walk@64x64-top-bottom +igt@kms_cursor_edge_walk@64x64-top-edge +igt@kms_cursor_edge_walk@128x128-left-edge +igt@kms_cursor_edge_walk@128x128-right-edge +igt@kms_cursor_edge_walk@128x128-top-bottom +igt@kms_cursor_edge_walk@128x128-top-edge +igt@kms_cursor_edge_walk@256x256-left-edge +igt@kms_cursor_edge_walk@256x256-right-edge +igt@kms_cursor_edge_walk@256x256-top-bottom +igt@kms_cursor_edge_walk@256x256-top-edge -igt@kms_cursor_edge_walk@left-edge -igt@kms_cursor_edge_walk@right-edge -igt@kms_cursor_edge_walk@top-bottom -igt@kms_cursor_edge_walk@top-edge == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/index.html [-- Attachment #2: Type: text/html, Size: 4576 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/2] tests/kms_cursor_edge_walk: Re-org dynamic subtests 2023-02-10 4:24 [igt-dev] [i-g-t 1/2] tests/kms_cursor_edge_walk: Re-org dynamic subtests Bhanuprakash Modem ` (2 preceding siblings ...) 2023-02-10 15:22 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork @ 2023-02-10 22:22 ` Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-02-10 22:22 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 32464 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/kms_cursor_edge_walk: Re-org dynamic subtests URL : https://patchwork.freedesktop.org/series/113868/ State : success == Summary == CI Bug Log - changes from CI_DRM_12723_full -> IGTPW_8482_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/index.html Participating hosts (9 -> 10) ------------------------------ Additional (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8482_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_cursor_edge_walk@128x128-top-edge} (NEW): - {shard-tglu}: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-tglu-6/igt@kms_cursor_edge_walk@128x128-top-edge.html New tests --------- New tests have been introduced between CI_DRM_12723_full and IGTPW_8482_full: ### New IGT tests (80) ### * igt@kms_cursor_edge_walk@128x128-left-edge: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-right-edge: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-right-edge@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-right-edge@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-right-edge@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-right-edge@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-right-edge@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-top-bottom: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-top-edge: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-top-edge@pipe-a-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-top-edge@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-top-edge@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@128x128-top-edge@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-left-edge: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-left-edge@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-left-edge@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-left-edge@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-right-edge: - Statuses : - Exec time: [None] s * igt@kms_cursor_edge_walk@256x256-right-edge@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-right-edge@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-right-edge@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-right-edge@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-right-edge@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-right-edge@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-right-edge@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-top-bottom: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-a-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-top-edge: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-left-edge: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-left-edge@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-left-edge@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-left-edge@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-left-edge@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-left-edge@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-left-edge@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-right-edge: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-top-bottom: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-top-edge: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-top-edge@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-top-edge@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-top-edge@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_cursor_edge_walk@64x64-top-edge@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8482_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-glk: NOTRUN -> [FAIL][2] ([i915#2842]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-glk6/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][3] -> [FAIL][4] ([i915#2842]) +2 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-glk: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-glk4/igt@gem_lmem_swapping@parallel-random-verify.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#3886]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-glk3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html * {igt@kms_cursor_edge_walk@64x64-left-edge} (NEW): - {shard-rkl}: NOTRUN -> [SKIP][7] ([i915#4098]) +9 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-rkl-5/igt@kms_cursor_edge_walk@64x64-left-edge.html * igt@kms_flip@plain-flip-ts-check@a-hdmi-a1: - shard-glk: [PASS][8] -> [FAIL][9] ([i915#2122]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-glk2/igt@kms_flip@plain-flip-ts-check@a-hdmi-a1.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-glk5/igt@kms_flip@plain-flip-ts-check@a-hdmi-a1.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][10] ([fdo#109271]) +41 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-glk1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][11] ([fdo#109271]) +18 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-snb1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-a-hdmi-a-1.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-glk: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#658]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-glk6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html #### Possible fixes #### * igt@drm_fdinfo@virtual-idle: - {shard-rkl}: [FAIL][13] ([i915#7742]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-rkl-6/igt@drm_fdinfo@virtual-idle.html * igt@fbdev@unaligned-write: - {shard-tglu}: [SKIP][15] ([i915#2582]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-tglu-6/igt@fbdev@unaligned-write.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-tglu-3/igt@fbdev@unaligned-write.html * igt@fbdev@write: - {shard-rkl}: [SKIP][17] ([i915#2582]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-rkl-2/igt@fbdev@write.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-rkl-6/igt@fbdev@write.html * igt@gem_eio@in-flight-suspend: - {shard-rkl}: [FAIL][19] ([fdo#103375]) -> [PASS][20] +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-rkl-4/igt@gem_eio@in-flight-suspend.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-rkl-5/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@suspend: - {shard-rkl}: [FAIL][21] ([i915#5115] / [i915#7052]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-rkl-4/igt@gem_eio@suspend.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-rkl-1/igt@gem_eio@suspend.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][23] ([i915#2846]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-glk2/igt@gem_exec_fair@basic-deadline.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-glk3/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none@vcs0: - {shard-rkl}: [FAIL][25] ([i915#2842]) -> [PASS][26] +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-rkl-1/igt@gem_exec_fair@basic-none@vcs0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_reloc@basic-write-cpu-noreloc: - {shard-rkl}: [SKIP][27] ([i915#3281]) -> [PASS][28] +2 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-rkl-6/igt@gem_exec_reloc@basic-write-cpu-noreloc.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-rkl-5/igt@gem_exec_reloc@basic-write-cpu-noreloc.html * igt@gem_ppgtt@blt-vs-render-ctxn: - shard-snb: [FAIL][29] -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-snb1/igt@gem_ppgtt@blt-vs-render-ctxn.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-snb7/igt@gem_ppgtt@blt-vs-render-ctxn.html * igt@gem_set_tiling_vs_pwrite: - {shard-rkl}: [SKIP][31] ([i915#3282]) -> [PASS][32] +3 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html * igt@gen9_exec_parse@valid-registers: - {shard-rkl}: [SKIP][33] ([i915#2527]) -> [PASS][34] +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-rkl-1/igt@gen9_exec_parse@valid-registers.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - {shard-rkl}: [SKIP][35] ([i915#4098]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-rkl-4/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-rkl-6/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_rpm@i2c: - {shard-tglu}: [SKIP][37] ([i915#3547]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-tglu-6/igt@i915_pm_rpm@i2c.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-tglu-3/igt@i915_pm_rpm@i2c.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - {shard-rkl}: [SKIP][39] ([i915#1845] / [i915#4098]) -> [PASS][40] +24 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-rkl-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy: - {shard-tglu}: [SKIP][41] ([i915#1845] / [i915#7651]) -> [PASS][42] +3 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-tglu-6/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-tglu-4/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-glk: [FAIL][43] ([i915#2346]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@psr-suspend: - {shard-rkl}: [SKIP][45] ([fdo#110189] / [i915#3955]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][47] ([i915#79]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-glk4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - {shard-rkl}: [SKIP][49] ([i915#1849] / [i915#4098]) -> [PASS][50] +17 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - {shard-tglu}: [SKIP][51] ([i915#1849]) -> [PASS][52] +2 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_psr@cursor_render: - {shard-rkl}: [SKIP][53] ([i915#1072]) -> [PASS][54] +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-rkl-1/igt@kms_psr@cursor_render.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-rkl-6/igt@kms_psr@cursor_render.html * igt@kms_rotation_crc@primary-x-tiled-reflect-x-0: - {shard-tglu}: [SKIP][55] ([i915#7651]) -> [PASS][56] +3 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-tglu-6/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-tglu-1/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html * igt@prime_vgem@basic-write: - {shard-rkl}: [SKIP][57] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][58] +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12723/shard-rkl-1/igt@prime_vgem@basic-write.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/shard-rkl-5/igt@prime_vgem@basic-write.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5115]: https://gitlab.freedesktop.org/drm/intel/issues/5115 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128 [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7155 -> IGTPW_8482 CI-20190529: 20190529 CI_DRM_12723: f07c78a0aa8293873119176b462f58f21b74baf6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8482: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/index.html IGT_7155: 75c508d4e19c65683d4060cb3a772df600aaf23e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8482/index.html [-- Attachment #2: Type: text/html, Size: 28455 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-02-10 22:22 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-02-10 4:24 [igt-dev] [i-g-t 1/2] tests/kms_cursor_edge_walk: Re-org dynamic subtests Bhanuprakash Modem 2023-02-10 4:24 ` [igt-dev] [i-g-t 2/2] tests/kms_cursor_edge_walk: Limit the execution to two pipes Bhanuprakash Modem 2023-02-10 8:18 ` Karthik B S 2023-02-10 8:10 ` [igt-dev] [i-g-t 1/2] tests/kms_cursor_edge_walk: Re-org dynamic subtests Karthik B S 2023-02-10 15:22 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork 2023-02-10 22:22 ` [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