* [igt-dev] [PATCH i-g-t] tests/kms_plane_scaling: add invalid parameter tests
@ 2023-01-15 21:03 Juha-Pekka Heikkila
2023-01-15 21:48 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2023-01-15 23:07 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
0 siblings, 2 replies; 7+ messages in thread
From: Juha-Pekka Heikkila @ 2023-01-15 21:03 UTC (permalink / raw)
To: igt-dev; +Cc: Drew Davenport
Add skeleton for adding invalid parameter tests and add two tests which are
expected to return -EINVAL
Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
tests/kms_plane_scaling.c | 71 +++++++++++++++++++++++++++++++++++++++
1 file changed, 71 insertions(+)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 887a55e63..96713128b 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -819,6 +819,75 @@ static void test_scaler_with_multi_pipe_plane(data_t *d)
igt_assert_eq(ret1 && ret2, 0);
}
+static void invalid_parameter_tests(data_t *d) {
+ enum pipe pipe = PIPE_A;
+ igt_output_t *output;
+ igt_fb_t fb;
+ igt_plane_t* plane;
+ int32_t rval;
+
+ const struct {
+ const char* testname;
+ uint32_t planesize[2];
+ struct {
+ enum igt_atomic_plane_properties prop;
+ uint32_t value;
+ } params[8];
+ } paramtests[] = {
+ {
+ .testname = "less-than-1-height-src",
+ .planesize = {256, 8},
+ .params = {{IGT_PLANE_SRC_H, IGT_FIXED(0, 30) }, {~0}}
+ },
+ {
+ .testname = "less-than-1-width-src",
+ .planesize = {8, 256},
+ .params = {{IGT_PLANE_SRC_W, IGT_FIXED(0, 30) }, {~0}}
+ },
+ };
+
+ igt_fixture {
+ output = igt_get_single_output_for_pipe(&d->display, pipe);
+ igt_require(output);
+
+ igt_output_set_pipe(output, pipe);
+ plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+
+ igt_create_fb(d->drm_fd, 256, 256,
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_NONE,
+ &fb);
+ }
+
+ igt_subtest_group {
+ igt_describe("test parameters which should not be accepted");
+ igt_subtest_with_dynamic("invalid-parameters") {
+ for (uint32_t i = 0; i < ARRAY_SIZE(paramtests); i++) {
+ igt_dynamic(paramtests[i].testname) {
+ igt_plane_set_position(plane, 0, 0);
+ igt_plane_set_fb(plane, &fb);
+ igt_plane_set_size(plane,
+ paramtests[i].planesize[0],
+ paramtests[i].planesize[1]);
+
+
+ for (uint32_t j = 0; paramtests[i].params[j].prop != ~0; j++)
+ igt_plane_set_prop_value(plane,
+ paramtests[i].params[j].prop,
+ paramtests[i].params[j].value);
+
+ rval = igt_display_try_commit2(&d->display, COMMIT_ATOMIC);
+
+ igt_assert(rval == -EINVAL);
+ }
+ }
+ }
+ }
+
+ igt_fixture
+ igt_remove_fb(d->drm_fd, &fb);
+}
+
static int opt_handler(int opt, int opt_index, void *_data)
{
data_t *data = _data;
@@ -982,6 +1051,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_subtest_f("2x-scaler-multi-pipe")
test_scaler_with_multi_pipe_plane(&data);
+ invalid_parameter_tests(&data);
+
igt_fixture {
igt_display_fini(&data.display);
close(data.drm_fd);
--
2.39.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_scaling: add invalid parameter tests
2023-01-15 21:03 [igt-dev] [PATCH i-g-t] tests/kms_plane_scaling: add invalid parameter tests Juha-Pekka Heikkila
@ 2023-01-15 21:48 ` Patchwork
2023-01-15 23:07 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
1 sibling, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-01-15 21:48 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4147 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: add invalid parameter tests
URL : https://patchwork.freedesktop.org/series/112859/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12585 -> IGTPW_8344
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/index.html
Participating hosts (44 -> 43)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_8344:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_selftest@live@requests:
- {bat-rplp-1}: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/bat-rplp-1/igt@i915_selftest@live@requests.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/bat-rplp-1/igt@i915_selftest@live@requests.html
Known issues
------------
Here are the changes found in IGTPW_8344 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@ring_submission:
- fi-kbl-soraka: [PASS][3] -> [INCOMPLETE][4] ([i915#7640])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/fi-kbl-soraka/igt@i915_selftest@live@ring_submission.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/fi-kbl-soraka/igt@i915_selftest@live@ring_submission.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- {bat-dg2-11}: [INCOMPLETE][5] ([i915#7834]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@requests:
- {bat-rpls-1}: [INCOMPLETE][7] ([i915#6257]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/bat-rpls-1/igt@i915_selftest@live@requests.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/bat-rpls-1/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@reset:
- {bat-rpls-2}: [DMESG-FAIL][9] ([i915#4983]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/bat-rpls-2/igt@i915_selftest@live@reset.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/bat-rpls-2/igt@i915_selftest@live@reset.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#4137]: https://gitlab.freedesktop.org/drm/intel/issues/4137
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#6257]: https://gitlab.freedesktop.org/drm/intel/issues/6257
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
[i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359
[i915#7625]: https://gitlab.freedesktop.org/drm/intel/issues/7625
[i915#7640]: https://gitlab.freedesktop.org/drm/intel/issues/7640
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7834]: https://gitlab.freedesktop.org/drm/intel/issues/7834
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7119 -> IGTPW_8344
CI-20190529: 20190529
CI_DRM_12585: 68d139b609a97a83e7c231189d4864aba4e1679b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8344: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/index.html
IGT_7119: 1e6d24e6dfa42b22f950f7d5e436b8f9acf8747f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@kms_plane_scaling@invalid-parameters
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/index.html
[-- Attachment #2: Type: text/html, Size: 4317 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_plane_scaling: add invalid parameter tests
2023-01-15 21:03 [igt-dev] [PATCH i-g-t] tests/kms_plane_scaling: add invalid parameter tests Juha-Pekka Heikkila
2023-01-15 21:48 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2023-01-15 23:07 ` Patchwork
1 sibling, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-01-15 23:07 UTC (permalink / raw)
To: Juha-Pekka Heikkila; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 29922 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: add invalid parameter tests
URL : https://patchwork.freedesktop.org/series/112859/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_12585_full -> IGTPW_8344_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_8344_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_8344_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/index.html
Participating hosts (12 -> 10)
------------------------------
Additional (1): shard-rkl0
Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_8344_full:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_plane_scaling@invalid-parameters} (NEW):
- {shard-rkl}: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-1/igt@kms_plane_scaling@invalid-parameters.html
* {igt@kms_plane_scaling@invalid-parameters@less-than-1-width-src} (NEW):
- shard-snb: NOTRUN -> [FAIL][2] +1 similar issue
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-snb4/igt@kms_plane_scaling@invalid-parameters@less-than-1-width-src.html
* igt@perf@stress-open-close:
- shard-apl: [PASS][3] -> [DMESG-FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl6/igt@perf@stress-open-close.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl7/igt@perf@stress-open-close.html
New tests
---------
New tests have been introduced between CI_DRM_12585_full and IGTPW_8344_full:
### New IGT tests (3) ###
* igt@kms_plane_scaling@invalid-parameters:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@invalid-parameters@less-than-1-height-src:
- Statuses : 1 fail(s) 3 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@invalid-parameters@less-than-1-width-src:
- Statuses : 1 fail(s) 3 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_8344_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@read:
- shard-apl: [PASS][5] -> [FAIL][6] ([i915#6724] / [i915#7743])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl7/igt@fbdev@read.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl3/igt@fbdev@read.html
- shard-glk: [PASS][7] -> [FAIL][8] ([i915#6724] / [i915#7743])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-glk6/igt@fbdev@read.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-glk5/igt@fbdev@read.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-glk: [PASS][9] -> [FAIL][10] ([i915#2842]) +1 similar issue
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-glk5/igt@gem_exec_fair@basic-none-share@rcs0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-glk6/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-apl: [PASS][11] -> [FAIL][12] ([i915#2842])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-apl: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#4613])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-apl: [PASS][14] -> [INCOMPLETE][15] ([i915#7708])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-apl: NOTRUN -> [WARN][16] ([i915#2658])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl7/igt@gem_pwrite@basic-exhaustion.html
* igt@i915_pm_rps@engine-order:
- shard-apl: [PASS][17] -> [FAIL][18] ([i915#6537])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl6/igt@i915_pm_rps@engine-order.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl2/igt@i915_pm_rps@engine-order.html
* igt@kms_atomic_transition@plane-all-transition:
- shard-snb: NOTRUN -> [SKIP][19] ([fdo#109271])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-snb7/igt@kms_atomic_transition@plane-all-transition.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#3886]) +3 similar issues
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl3/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271]) +81 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl2/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_content_protection@lic@pipe-a-dp-1:
- shard-apl: NOTRUN -> [TIMEOUT][22] ([i915#7173])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl6/igt@kms_content_protection@lic@pipe-a-dp-1.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
- shard-glk: [PASS][23] -> [FAIL][24] ([i915#2346])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-apl: [PASS][25] -> [FAIL][26] ([i915#2346])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-apl: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#658]) +2 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl3/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_writeback@writeback-check-output:
- shard-apl: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#2437])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl3/igt@kms_writeback@writeback-check-output.html
#### Possible fixes ####
* igt@drm_fdinfo@idle@rcs0:
- {shard-rkl}: [FAIL][29] ([i915#7742]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-2/igt@drm_fdinfo@idle@rcs0.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-3/igt@drm_fdinfo@idle@rcs0.html
* igt@fbdev@pan:
- {shard-rkl}: [SKIP][31] ([i915#2582]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-1/igt@fbdev@pan.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-6/igt@fbdev@pan.html
* igt@fbdev@write:
- {shard-dg1}: [FAIL][33] ([i915#7863]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-dg1-18/igt@fbdev@write.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-dg1-14/igt@fbdev@write.html
- shard-snb: [FAIL][35] ([i915#6724]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-snb4/igt@fbdev@write.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-snb5/igt@fbdev@write.html
* igt@gem_caching@read-writes:
- shard-apl: [INCOMPLETE][37] ([i915#7708]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl3/igt@gem_caching@read-writes.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl6/igt@gem_caching@read-writes.html
* igt@gem_ctx_exec@basic-nohangcheck:
- {shard-rkl}: [FAIL][39] ([i915#6268]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-apl: [DMESG-WARN][41] ([i915#180]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl3/igt@gem_ctx_isolation@preservation-s3@bcs0.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl1/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_eio@suspend:
- {shard-rkl}: [FAIL][43] ([i915#7052]) -> [PASS][44] +1 similar issue
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-4/igt@gem_eio@suspend.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-1/igt@gem_eio@suspend.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [FAIL][45] ([i915#2846]) -> [PASS][46]
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-glk4/igt@gem_exec_fair@basic-deadline.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-glk4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-apl: [FAIL][47] ([i915#2842]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl3/igt@gem_exec_fair@basic-pace-share@rcs0.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- {shard-rkl}: [FAIL][49] ([i915#2842]) -> [PASS][50] +2 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- {shard-rkl}: [SKIP][51] ([i915#3281]) -> [PASS][52] +4 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-cpu-active.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-apl: [INCOMPLETE][53] ([i915#7524] / [i915#7708]) -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl3/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_userptr_blits@forbidden-operations:
- {shard-rkl}: [SKIP][55] ([i915#3282]) -> [PASS][56] +2 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-1/igt@gem_userptr_blits@forbidden-operations.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-5/igt@gem_userptr_blits@forbidden-operations.html
* igt@gen9_exec_parse@bb-start-out:
- {shard-rkl}: [SKIP][57] ([i915#2527]) -> [PASS][58] +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-3/igt@gen9_exec_parse@bb-start-out.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-5/igt@gen9_exec_parse@bb-start-out.html
* igt@i915_hangman@engine-engine-error@bcs0:
- {shard-rkl}: [SKIP][59] ([i915#6258]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-5/igt@i915_hangman@engine-engine-error@bcs0.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-1/igt@i915_hangman@engine-engine-error@bcs0.html
* igt@i915_pm_rpm@cursor:
- {shard-tglu}: [SKIP][61] ([i915#1849]) -> [PASS][62] +3 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-tglu-6/igt@i915_pm_rpm@cursor.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-tglu-4/igt@i915_pm_rpm@cursor.html
* igt@i915_pm_rpm@dpms-lpsp:
- {shard-rkl}: [SKIP][63] ([i915#1397]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-3/igt@i915_pm_rpm@dpms-lpsp.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-6/igt@i915_pm_rpm@dpms-lpsp.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- {shard-dg1}: [SKIP][65] ([i915#1397]) -> [PASS][66] +1 similar issue
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-dg1-16/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@i915_pm_rpm@pm-tiling:
- {shard-rkl}: [SKIP][67] ([fdo#109308]) -> [PASS][68] +1 similar issue
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-4/igt@i915_pm_rpm@pm-tiling.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-6/igt@i915_pm_rpm@pm-tiling.html
* igt@i915_pm_sseu@full-enable:
- {shard-rkl}: [SKIP][69] ([i915#4387]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-5/igt@i915_pm_sseu@full-enable.html
* igt@kms_atomic@atomic_plane_damage:
- {shard-rkl}: [SKIP][71] ([i915#4098]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-2/igt@kms_atomic@atomic_plane_damage.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-6/igt@kms_atomic@atomic_plane_damage.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-180:
- {shard-tglu}: [SKIP][73] ([i915#1845] / [i915#7651]) -> [PASS][74] +1 similar issue
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-tglu-6/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-tglu-8/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html
* igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs:
- {shard-rkl}: [SKIP][75] ([i915#1845] / [i915#4098]) -> [PASS][76] +32 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-4/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-6/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- {shard-rkl}: [SKIP][77] ([i915#1849] / [i915#4098]) -> [PASS][78] +15 similar issues
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_plane@plane-panning-bottom-right@pipe-a-planes:
- {shard-rkl}: [SKIP][79] ([i915#1849]) -> [PASS][80] +2 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-1/igt@kms_plane@plane-panning-bottom-right@pipe-a-planes.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right@pipe-a-planes.html
- {shard-tglu}: [SKIP][81] ([i915#1849] / [i915#3558]) -> [PASS][82] +1 similar issue
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-tglu-6/igt@kms_plane@plane-panning-bottom-right@pipe-a-planes.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-tglu-7/igt@kms_plane@plane-panning-bottom-right@pipe-a-planes.html
* igt@kms_psr@sprite_mmap_cpu:
- {shard-rkl}: [SKIP][83] ([i915#1072]) -> [PASS][84] +1 similar issue
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-1/igt@kms_psr@sprite_mmap_cpu.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-6/igt@kms_psr@sprite_mmap_cpu.html
* igt@kms_vblank@pipe-d-query-busy:
- {shard-tglu}: [SKIP][85] ([i915#7651]) -> [PASS][86] +7 similar issues
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-tglu-6/igt@kms_vblank@pipe-d-query-busy.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-tglu-3/igt@kms_vblank@pipe-d-query-busy.html
* igt@perf_pmu@all-busy-idle-check-all:
- {shard-dg1}: [FAIL][87] ([i915#5234]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-dg1-18/igt@perf_pmu@all-busy-idle-check-all.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-dg1-17/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@idle@rcs0:
- {shard-rkl}: [FAIL][89] ([i915#4349]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-rkl-3/igt@perf_pmu@idle@rcs0.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-rkl-1/igt@perf_pmu@idle@rcs0.html
* igt@sysfs_heartbeat_interval@precise@rcs0:
- {shard-dg1}: [FAIL][91] ([i915#1755]) -> [PASS][92] +4 similar issues
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-dg1-18/igt@sysfs_heartbeat_interval@precise@rcs0.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-dg1-19/igt@sysfs_heartbeat_interval@precise@rcs0.html
#### Warnings ####
* igt@runner@aborted:
- shard-apl: [FAIL][93] ([i915#180] / [i915#4312]) -> [FAIL][94] ([i915#4312])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12585/shard-apl3/igt@runner@aborted.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/shard-apl7/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[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#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[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#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
[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#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[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#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[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#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532
[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#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[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#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
[i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
[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#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[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#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#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
[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#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[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#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#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
[i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030
[i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[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#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
[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#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
[i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6724]: https://gitlab.freedesktop.org/drm/intel/issues/6724
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
[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#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294
[i915#7524]: https://gitlab.freedesktop.org/drm/intel/issues/7524
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
[i915#7679]: https://gitlab.freedesktop.org/drm/intel/issues/7679
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7708]: https://gitlab.freedesktop.org/drm/intel/issues/7708
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7743]: https://gitlab.freedesktop.org/drm/intel/issues/7743
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7863]: https://gitlab.freedesktop.org/drm/intel/issues/7863
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7119 -> IGTPW_8344
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_12585: 68d139b609a97a83e7c231189d4864aba4e1679b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8344: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/index.html
IGT_7119: 1e6d24e6dfa42b22f950f7d5e436b8f9acf8747f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8344/index.html
[-- Attachment #2: Type: text/html, Size: 25598 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t] tests/kms_plane_scaling: add invalid parameter tests
@ 2023-02-09 11:51 Juha-Pekka Heikkila
2023-02-09 20:02 ` Luca Coelho
2023-02-10 13:22 ` Kamil Konieczny
0 siblings, 2 replies; 7+ messages in thread
From: Juha-Pekka Heikkila @ 2023-02-09 11:51 UTC (permalink / raw)
To: igt-dev
Add skeleton for adding invalid parameter tests and add
two tests which are expected to return -EINVAL or -ERANGE
Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
---
tests/kms_plane_scaling.c | 71 +++++++++++++++++++++++++++++++++++++++
1 file changed, 71 insertions(+)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 887a55e63..30a839f15 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -819,6 +819,75 @@ static void test_scaler_with_multi_pipe_plane(data_t *d)
igt_assert_eq(ret1 && ret2, 0);
}
+static void invalid_parameter_tests(data_t *d) {
+ enum pipe pipe = PIPE_A;
+ igt_output_t *output;
+ igt_fb_t fb;
+ igt_plane_t* plane;
+ int rval;
+
+ const struct {
+ const char* testname;
+ uint32_t planesize[2];
+ struct {
+ enum igt_atomic_plane_properties prop;
+ uint32_t value;
+ } params[8];
+ } paramtests[] = {
+ {
+ .testname = "less-than-1-height-src",
+ .planesize = {256, 8},
+ .params = {{IGT_PLANE_SRC_H, IGT_FIXED(0, 30) }, {~0}}
+ },
+ {
+ .testname = "less-than-1-width-src",
+ .planesize = {8, 256},
+ .params = {{IGT_PLANE_SRC_W, IGT_FIXED(0, 30) }, {~0}}
+ },
+ };
+
+ igt_fixture {
+ output = igt_get_single_output_for_pipe(&d->display, pipe);
+ igt_require(output);
+
+ igt_output_set_pipe(output, pipe);
+ plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+
+ igt_create_fb(d->drm_fd, 256, 256,
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_NONE,
+ &fb);
+ }
+
+ igt_describe("test parameters which should not be accepted");
+ igt_subtest_with_dynamic("invalid-parameters") {
+ for (uint32_t i = 0; i < ARRAY_SIZE(paramtests); i++) {
+ igt_dynamic(paramtests[i].testname) {
+ igt_plane_set_position(plane, 0, 0);
+ igt_plane_set_fb(plane, &fb);
+ igt_plane_set_size(plane,
+ paramtests[i].planesize[0],
+ paramtests[i].planesize[1]);
+
+
+ for (uint32_t j = 0; paramtests[i].params[j].prop != ~0; j++)
+ igt_plane_set_prop_value(plane,
+ paramtests[i].params[j].prop,
+ paramtests[i].params[j].value);
+
+ rval = igt_display_try_commit2(&d->display, COMMIT_ATOMIC);
+
+ igt_assert(rval == -EINVAL || rval == -ERANGE);
+ }
+ }
+ }
+
+ igt_fixture {
+ igt_remove_fb(d->drm_fd, &fb);
+ igt_output_set_pipe(output, PIPE_NONE);
+ }
+}
+
static int opt_handler(int opt, int opt_index, void *_data)
{
data_t *data = _data;
@@ -982,6 +1051,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_subtest_f("2x-scaler-multi-pipe")
test_scaler_with_multi_pipe_plane(&data);
+ invalid_parameter_tests(&data);
+
igt_fixture {
igt_display_fini(&data.display);
close(data.drm_fd);
--
2.39.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [igt-dev] [PATCH i-g-t] tests/kms_plane_scaling: add invalid parameter tests
2023-02-09 11:51 [igt-dev] [PATCH i-g-t] " Juha-Pekka Heikkila
@ 2023-02-09 20:02 ` Luca Coelho
2023-02-10 13:22 ` Kamil Konieczny
1 sibling, 0 replies; 7+ messages in thread
From: Luca Coelho @ 2023-02-09 20:02 UTC (permalink / raw)
To: Juha-Pekka Heikkila, igt-dev
On Thu, 2023-02-09 at 13:51 +0200, Juha-Pekka Heikkila wrote:
> Add skeleton for adding invalid parameter tests and add
> two tests which are expected to return -EINVAL or -ERANGE
>
> Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> ---
You forgot to add "v3" in the patch subject, but that's okay.
Reviewed-by: Luca Coelho <luciano.coelho@intel.com>
(thanks for the "pulla" 🙂)
Cheers,
Luca.
> tests/kms_plane_scaling.c | 71 +++++++++++++++++++++++++++++++++++++++
> 1 file changed, 71 insertions(+)
>
> diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
> index 887a55e63..30a839f15 100644
> --- a/tests/kms_plane_scaling.c
> +++ b/tests/kms_plane_scaling.c
> @@ -819,6 +819,75 @@ static void test_scaler_with_multi_pipe_plane(data_t *d)
> igt_assert_eq(ret1 && ret2, 0);
> }
>
> +static void invalid_parameter_tests(data_t *d) {
> + enum pipe pipe = PIPE_A;
> + igt_output_t *output;
> + igt_fb_t fb;
> + igt_plane_t* plane;
> + int rval;
> +
> + const struct {
> + const char* testname;
> + uint32_t planesize[2];
> + struct {
> + enum igt_atomic_plane_properties prop;
> + uint32_t value;
> + } params[8];
> + } paramtests[] = {
> + {
> + .testname = "less-than-1-height-src",
> + .planesize = {256, 8},
> + .params = {{IGT_PLANE_SRC_H, IGT_FIXED(0, 30) }, {~0}}
> + },
> + {
> + .testname = "less-than-1-width-src",
> + .planesize = {8, 256},
> + .params = {{IGT_PLANE_SRC_W, IGT_FIXED(0, 30) }, {~0}}
> + },
> + };
> +
> + igt_fixture {
> + output = igt_get_single_output_for_pipe(&d->display, pipe);
> + igt_require(output);
> +
> + igt_output_set_pipe(output, pipe);
> + plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> +
> + igt_create_fb(d->drm_fd, 256, 256,
> + DRM_FORMAT_XRGB8888,
> + DRM_FORMAT_MOD_NONE,
> + &fb);
> + }
> +
> + igt_describe("test parameters which should not be accepted");
> + igt_subtest_with_dynamic("invalid-parameters") {
> + for (uint32_t i = 0; i < ARRAY_SIZE(paramtests); i++) {
> + igt_dynamic(paramtests[i].testname) {
> + igt_plane_set_position(plane, 0, 0);
> + igt_plane_set_fb(plane, &fb);
> + igt_plane_set_size(plane,
> + paramtests[i].planesize[0],
> + paramtests[i].planesize[1]);
> +
> +
> + for (uint32_t j = 0; paramtests[i].params[j].prop != ~0; j++)
> + igt_plane_set_prop_value(plane,
> + paramtests[i].params[j].prop,
> + paramtests[i].params[j].value);
> +
> + rval = igt_display_try_commit2(&d->display, COMMIT_ATOMIC);
> +
> + igt_assert(rval == -EINVAL || rval == -ERANGE);
> + }
> + }
> + }
> +
> + igt_fixture {
> + igt_remove_fb(d->drm_fd, &fb);
> + igt_output_set_pipe(output, PIPE_NONE);
> + }
> +}
> +
> static int opt_handler(int opt, int opt_index, void *_data)
> {
> data_t *data = _data;
> @@ -982,6 +1051,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> igt_subtest_f("2x-scaler-multi-pipe")
> test_scaler_with_multi_pipe_plane(&data);
>
> + invalid_parameter_tests(&data);
> +
> igt_fixture {
> igt_display_fini(&data.display);
> close(data.drm_fd);
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [igt-dev] [PATCH i-g-t] tests/kms_plane_scaling: add invalid parameter tests
2023-02-09 11:51 [igt-dev] [PATCH i-g-t] " Juha-Pekka Heikkila
2023-02-09 20:02 ` Luca Coelho
@ 2023-02-10 13:22 ` Kamil Konieczny
2023-02-10 14:07 ` Juha-Pekka Heikkila
1 sibling, 1 reply; 7+ messages in thread
From: Kamil Konieczny @ 2023-02-10 13:22 UTC (permalink / raw)
To: igt-dev
Hi Juha-Pekka,
I have few nits, see below.
On 2023-02-09 at 13:51:51 +0200, Juha-Pekka Heikkila wrote:
> Add skeleton for adding invalid parameter tests and add
> two tests which are expected to return -EINVAL or -ERANGE
>
> Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> ---
> tests/kms_plane_scaling.c | 71 +++++++++++++++++++++++++++++++++++++++
> 1 file changed, 71 insertions(+)
>
> diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
> index 887a55e63..30a839f15 100644
> --- a/tests/kms_plane_scaling.c
> +++ b/tests/kms_plane_scaling.c
> @@ -819,6 +819,75 @@ static void test_scaler_with_multi_pipe_plane(data_t *d)
> igt_assert_eq(ret1 && ret2, 0);
> }
>
> +static void invalid_parameter_tests(data_t *d) {
------------------------------------------------- ^
This brace should be at new line.
> + enum pipe pipe = PIPE_A;
> + igt_output_t *output;
> + igt_fb_t fb;
> + igt_plane_t* plane;
------------------ ^
This should be:
igt_plane_t *plane;
> + int rval;
> +
> + const struct {
> + const char* testname;
------------------------- ^
Same here.
> + uint32_t planesize[2];
> + struct {
> + enum igt_atomic_plane_properties prop;
> + uint32_t value;
> + } params[8];
> + } paramtests[] = {
> + {
> + .testname = "less-than-1-height-src",
> + .planesize = {256, 8},
> + .params = {{IGT_PLANE_SRC_H, IGT_FIXED(0, 30) }, {~0}}
> + },
> + {
> + .testname = "less-than-1-width-src",
> + .planesize = {8, 256},
> + .params = {{IGT_PLANE_SRC_W, IGT_FIXED(0, 30) }, {~0}}
> + },
> + };
> +
> + igt_fixture {
> + output = igt_get_single_output_for_pipe(&d->display, pipe);
> + igt_require(output);
> +
> + igt_output_set_pipe(output, pipe);
> + plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> +
> + igt_create_fb(d->drm_fd, 256, 256,
> + DRM_FORMAT_XRGB8888,
> + DRM_FORMAT_MOD_NONE,
> + &fb);
> + }
> +
> + igt_describe("test parameters which should not be accepted");
> + igt_subtest_with_dynamic("invalid-parameters") {
> + for (uint32_t i = 0; i < ARRAY_SIZE(paramtests); i++) {
> + igt_dynamic(paramtests[i].testname) {
> + igt_plane_set_position(plane, 0, 0);
> + igt_plane_set_fb(plane, &fb);
> + igt_plane_set_size(plane,
-------------------------------------------------- ^
If you break line you should align it here.
> + paramtests[i].planesize[0],
-------------------------------------------------- ^
Align it.
> + paramtests[i].planesize[1]);
-------------------------------------------------- ^
This is correct align.
> +
> +
> + for (uint32_t j = 0; paramtests[i].params[j].prop != ~0; j++)
> + igt_plane_set_prop_value(plane,
---------------------------------------------------------------- ^
> + paramtests[i].params[j].prop,
---------------------------------------------------------------- ^
Align here.
> + paramtests[i].params[j].value);
---------------------------------------------------------------- ^
Align here.
> +
> + rval = igt_display_try_commit2(&d->display, COMMIT_ATOMIC);
-- ^
Use tabs, no spaces.
Please use checkpatch.pl from Linux kernel source to check
your patches before sending. It may change in future and
maybe we will have it in our GitLab CI and in patchwork but
for now please do it yourself.
Regards,
Kamil
> +
> + igt_assert(rval == -EINVAL || rval == -ERANGE);
> + }
> + }
> + }
> +
> + igt_fixture {
> + igt_remove_fb(d->drm_fd, &fb);
> + igt_output_set_pipe(output, PIPE_NONE);
> + }
> +}
> +
> static int opt_handler(int opt, int opt_index, void *_data)
> {
> data_t *data = _data;
> @@ -982,6 +1051,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> igt_subtest_f("2x-scaler-multi-pipe")
> test_scaler_with_multi_pipe_plane(&data);
>
> + invalid_parameter_tests(&data);
> +
> igt_fixture {
> igt_display_fini(&data.display);
> close(data.drm_fd);
> --
> 2.39.0
>
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [igt-dev] [PATCH i-g-t] tests/kms_plane_scaling: add invalid parameter tests
2023-02-10 13:22 ` Kamil Konieczny
@ 2023-02-10 14:07 ` Juha-Pekka Heikkila
0 siblings, 0 replies; 7+ messages in thread
From: Juha-Pekka Heikkila @ 2023-02-10 14:07 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, Luca Coelho
Hi Kamil,
I had just pushed this after which I saw your email. :/ While pushing I
did fixed most of those you had pointed, that alignment thing did look
different in my editor hence missed it.
/Juha-Pekka
On 10.2.2023 15.22, Kamil Konieczny wrote:
> Hi Juha-Pekka,
>
> I have few nits, see below.
>
> On 2023-02-09 at 13:51:51 +0200, Juha-Pekka Heikkila wrote:
>> Add skeleton for adding invalid parameter tests and add
>> two tests which are expected to return -EINVAL or -ERANGE
>>
>> Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
>> ---
>> tests/kms_plane_scaling.c | 71 +++++++++++++++++++++++++++++++++++++++
>> 1 file changed, 71 insertions(+)
>>
>> diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
>> index 887a55e63..30a839f15 100644
>> --- a/tests/kms_plane_scaling.c
>> +++ b/tests/kms_plane_scaling.c
>> @@ -819,6 +819,75 @@ static void test_scaler_with_multi_pipe_plane(data_t *d)
>> igt_assert_eq(ret1 && ret2, 0);
>> }
>>
>> +static void invalid_parameter_tests(data_t *d) {
> ------------------------------------------------- ^
> This brace should be at new line.
>
>> + enum pipe pipe = PIPE_A;
>> + igt_output_t *output;
>> + igt_fb_t fb;
>> + igt_plane_t* plane;
> ------------------ ^
> This should be:
> igt_plane_t *plane;
>
>> + int rval;
>> +
>> + const struct {
>> + const char* testname;
> ------------------------- ^
> Same here.
>
>> + uint32_t planesize[2];
>> + struct {
>> + enum igt_atomic_plane_properties prop;
>> + uint32_t value;
>> + } params[8];
>> + } paramtests[] = {
>> + {
>> + .testname = "less-than-1-height-src",
>> + .planesize = {256, 8},
>> + .params = {{IGT_PLANE_SRC_H, IGT_FIXED(0, 30) }, {~0}}
>> + },
>> + {
>> + .testname = "less-than-1-width-src",
>> + .planesize = {8, 256},
>> + .params = {{IGT_PLANE_SRC_W, IGT_FIXED(0, 30) }, {~0}}
>> + },
>> + };
>> +
>> + igt_fixture {
>> + output = igt_get_single_output_for_pipe(&d->display, pipe);
>> + igt_require(output);
>> +
>> + igt_output_set_pipe(output, pipe);
>> + plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
>> +
>> + igt_create_fb(d->drm_fd, 256, 256,
>> + DRM_FORMAT_XRGB8888,
>> + DRM_FORMAT_MOD_NONE,
>> + &fb);
>> + }
>> +
>> + igt_describe("test parameters which should not be accepted");
>> + igt_subtest_with_dynamic("invalid-parameters") {
>> + for (uint32_t i = 0; i < ARRAY_SIZE(paramtests); i++) {
>> + igt_dynamic(paramtests[i].testname) {
>> + igt_plane_set_position(plane, 0, 0);
>> + igt_plane_set_fb(plane, &fb);
>> + igt_plane_set_size(plane,
> -------------------------------------------------- ^
> If you break line you should align it here.
>
>> + paramtests[i].planesize[0],
> -------------------------------------------------- ^
> Align it.
>
>> + paramtests[i].planesize[1]);
> -------------------------------------------------- ^
> This is correct align.
>
>> +
>> +
>> + for (uint32_t j = 0; paramtests[i].params[j].prop != ~0; j++)
>> + igt_plane_set_prop_value(plane,
> ---------------------------------------------------------------- ^
>
>> + paramtests[i].params[j].prop,
> ---------------------------------------------------------------- ^
> Align here.
>
>> + paramtests[i].params[j].value);
> ---------------------------------------------------------------- ^
> Align here.
>
>> +
>> + rval = igt_display_try_commit2(&d->display, COMMIT_ATOMIC);
> -- ^
> Use tabs, no spaces.
>
> Please use checkpatch.pl from Linux kernel source to check
> your patches before sending. It may change in future and
> maybe we will have it in our GitLab CI and in patchwork but
> for now please do it yourself.
>
> Regards,
> Kamil
>
>> +
>> + igt_assert(rval == -EINVAL || rval == -ERANGE);
>> + }
>> + }
>> + }
>> +
>> + igt_fixture {
>> + igt_remove_fb(d->drm_fd, &fb);
>> + igt_output_set_pipe(output, PIPE_NONE);
>> + }
>> +}
>> +
>> static int opt_handler(int opt, int opt_index, void *_data)
>> {
>> data_t *data = _data;
>> @@ -982,6 +1051,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
>> igt_subtest_f("2x-scaler-multi-pipe")
>> test_scaler_with_multi_pipe_plane(&data);
>>
>> + invalid_parameter_tests(&data);
>> +
>> igt_fixture {
>> igt_display_fini(&data.display);
>> close(data.drm_fd);
>> --
>> 2.39.0
>>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-02-10 14:08 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-15 21:03 [igt-dev] [PATCH i-g-t] tests/kms_plane_scaling: add invalid parameter tests Juha-Pekka Heikkila
2023-01-15 21:48 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2023-01-15 23:07 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2023-02-09 11:51 [igt-dev] [PATCH i-g-t] " Juha-Pekka Heikkila
2023-02-09 20:02 ` Luca Coelho
2023-02-10 13:22 ` Kamil Konieczny
2023-02-10 14:07 ` Juha-Pekka Heikkila
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox