* [igt-dev] [PATCH i-g-t 0/6] Modified few kms tests to reduce execution time
@ 2023-01-09 13:40 Nidhi Gupta
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 1/6] tests/i915/kms_mmap_write_crc: Restrict the number of iteration to reduce the " Nidhi Gupta
` (7 more replies)
0 siblings, 8 replies; 9+ messages in thread
From: Nidhi Gupta @ 2023-01-09 13:40 UTC (permalink / raw)
To: igt-dev
Modified few tests to reduce the overall execution time
of the test by restricting all the subtests to execute
only on single pipe instead of all the pipes.
Nidhi Gupta (6):
tests/i915/kms_mmap_write_crc: Restrict the number of iteration to
reduce the execution time
tests/kms_plane_alpha_blend: Restrict the execution of subtest to
single pipe
tests/kms_color: Restrict the execution of subtests to single pipe
tests/kms_plane_scaling: Restrict the execution of subtest to single
pipe
tests/kms_pipe_crc_basic: Restrict the execution of subtest to single
pipe
tests/kms_async_flips: Restrict the execution of the subtest to single
pipe
tests/i915/kms_mmap_write_crc.c | 7 +-
tests/kms_async_flips.c | 2 +
tests/kms_color.c | 9 +++
tests/kms_pipe_crc_basic.c | 6 ++
tests/kms_plane_alpha_blend.c | 5 +-
tests/kms_plane_scaling.c | 113 +++++++++++++++++++-------------
6 files changed, 93 insertions(+), 49 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t 1/6] tests/i915/kms_mmap_write_crc: Restrict the number of iteration to reduce the execution time
2023-01-09 13:40 [igt-dev] [PATCH i-g-t 0/6] Modified few kms tests to reduce execution time Nidhi Gupta
@ 2023-01-09 13:40 ` Nidhi Gupta
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 2/6] tests/kms_plane_alpha_blend: Restrict the execution of subtest to single pipe Nidhi Gupta
` (6 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Nidhi Gupta @ 2023-01-09 13:40 UTC (permalink / raw)
To: igt-dev; +Cc: Nidhi Gupta
Reduce the number of iterations of subtest for stress test
from 10 to 2 to reduce the overall execution time.
Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com>
---
tests/i915/kms_mmap_write_crc.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/tests/i915/kms_mmap_write_crc.c b/tests/i915/kms_mmap_write_crc.c
index 96ddac11..8d995634 100644
--- a/tests/i915/kms_mmap_write_crc.c
+++ b/tests/i915/kms_mmap_write_crc.c
@@ -282,11 +282,14 @@ igt_main_args("n", NULL, NULL, opt_handler, NULL)
data.output = output;
data.pipe = pipe;
- igt_info("Using %d rounds for each pipe in the test\n", ROUNDS);
prepare_crtc(&data);
- for (i = 0; i < ROUNDS; i++)
+ for (i = 0; i < ROUNDS; i++) {
+ if (igt_run_in_simulation() && ROUNDS > 2)
+ break;
+ igt_info("Using %d rounds for each pipe in the test\n", i);
test(&data);
+ }
cleanup_crtc(&data);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t 2/6] tests/kms_plane_alpha_blend: Restrict the execution of subtest to single pipe
2023-01-09 13:40 [igt-dev] [PATCH i-g-t 0/6] Modified few kms tests to reduce execution time Nidhi Gupta
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 1/6] tests/i915/kms_mmap_write_crc: Restrict the number of iteration to reduce the " Nidhi Gupta
@ 2023-01-09 13:40 ` Nidhi Gupta
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 3/6] tests/kms_color: Restrict the execution of subtests " Nidhi Gupta
` (5 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Nidhi Gupta @ 2023-01-09 13:40 UTC (permalink / raw)
To: igt-dev; +Cc: Nidhi Gupta
To reduce the overall execution time of the test, now
all the subtests will be executed on single pipe instead
of all the pipes.
Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com>
---
tests/kms_plane_alpha_blend.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/tests/kms_plane_alpha_blend.c b/tests/kms_plane_alpha_blend.c
index ccf1d657..25e6c985 100644
--- a/tests/kms_plane_alpha_blend.c
+++ b/tests/kms_plane_alpha_blend.c
@@ -621,9 +621,12 @@ static void run_subtests(data_t *data)
if (!pipe_check(data, pipe, subtests[i].blend, subtests[i].must_multiply))
continue;
- igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name)
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
run_test_on_pipe_planes(data, pipe, output, subtests[i].blend,
subtests[i].must_multiply, subtests[i].test);
+ }
+ /*once is enough*/
+ break;
}
}
}
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t 3/6] tests/kms_color: Restrict the execution of subtests to single pipe
2023-01-09 13:40 [igt-dev] [PATCH i-g-t 0/6] Modified few kms tests to reduce execution time Nidhi Gupta
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 1/6] tests/i915/kms_mmap_write_crc: Restrict the number of iteration to reduce the " Nidhi Gupta
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 2/6] tests/kms_plane_alpha_blend: Restrict the execution of subtest to single pipe Nidhi Gupta
@ 2023-01-09 13:40 ` Nidhi Gupta
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 4/6] tests/kms_plane_scaling: Restrict the execution of subtest " Nidhi Gupta
` (4 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Nidhi Gupta @ 2023-01-09 13:40 UTC (permalink / raw)
To: igt-dev; +Cc: Nidhi Gupta
To reduce the overall execution time of the test, now
all the subtests will be executed on single pipe instead
of all the pipes.
Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com>
---
tests/kms_color.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/tests/kms_color.c b/tests/kms_color.c
index e0c6a8bf..98900eb3 100644
--- a/tests/kms_color.c
+++ b/tests/kms_color.c
@@ -904,6 +904,9 @@ run_invalid_tests_for_pipe(data_t *data)
igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe))
tests[i].test_t(data, pipe);
+
+ /*Restrict the execution on single pipe*/
+ break;
}
}
}
@@ -1012,6 +1015,8 @@ run_tests_for_pipe(data_t *data)
for_each_pipe(&data->display, pipe) {
run_gamma_degamma_tests_for_pipe(data, pipe,
gamma_degamma_tests[i].test_t);
+ /*Restrict the execution on single pipe*/
+ break;
}
}
}
@@ -1024,6 +1029,8 @@ run_tests_for_pipe(data_t *data)
ctm_tests[i].colors,
ctm_tests[i].ctm,
ctm_tests[i].iter);
+ /*Restrict the execution on single pipe*/
+ break;
}
}
}
@@ -1035,6 +1042,8 @@ run_tests_for_pipe(data_t *data)
igt_subtest_with_dynamic("deep-color") {
for_each_pipe(&data->display, pipe) {
run_deep_color_tests_for_pipe(data, pipe);
+ /*Restrict the execution on single pipe*/
+ break;
}
}
}
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t 4/6] tests/kms_plane_scaling: Restrict the execution of subtest to single pipe
2023-01-09 13:40 [igt-dev] [PATCH i-g-t 0/6] Modified few kms tests to reduce execution time Nidhi Gupta
` (2 preceding siblings ...)
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 3/6] tests/kms_color: Restrict the execution of subtests " Nidhi Gupta
@ 2023-01-09 13:40 ` Nidhi Gupta
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 5/6] tests/kms_pipe_crc_basic: " Nidhi Gupta
` (3 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Nidhi Gupta @ 2023-01-09 13:40 UTC (permalink / raw)
To: igt-dev; +Cc: Nidhi Gupta
To reduce the overall execution time of the test, now
all the subtests will be executed on single pipe instead
of all the pipes.
Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com>
---
tests/kms_plane_scaling.c | 113 ++++++++++++++++++++++----------------
1 file changed, 67 insertions(+), 46 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 887a55e6..755b4684 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -860,17 +860,20 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for (int index = 0; index < ARRAY_SIZE(scaler_with_pixel_format_tests); index++) {
igt_describe(scaler_with_pixel_format_tests[index].describe);
igt_subtest_with_dynamic(scaler_with_pixel_format_tests[index].name) {
- for_each_pipe_with_single_output(&data.display, pipe, output)
- igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
- drmModeModeInfo *mode;
-
- mode = igt_output_get_mode(output);
-
- test_scaler_with_pixel_format_pipe(&data,
- get_width(mode, scaler_with_pixel_format_tests[index].sf),
- get_height(mode, scaler_with_pixel_format_tests[index].sf),
- scaler_with_pixel_format_tests[index].is_upscale,
- pipe, output);
+ for_each_pipe_with_single_output(&data.display, pipe, output) {
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
+ drmModeModeInfo *mode;
+
+ mode = igt_output_get_mode(output);
+
+ test_scaler_with_pixel_format_pipe(&data,
+ get_width(mode, scaler_with_pixel_format_tests[index].sf),
+ get_height(mode, scaler_with_pixel_format_tests[index].sf),
+ scaler_with_pixel_format_tests[index].is_upscale,
+ pipe, output);
+ }
+ /*Restrict the execution of subtest to single pipe*/
+ break;
}
}
}
@@ -878,17 +881,20 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for (int index = 0; index < ARRAY_SIZE(scaler_with_rotation_tests); index++) {
igt_describe(scaler_with_rotation_tests[index].describe);
igt_subtest_with_dynamic(scaler_with_rotation_tests[index].name) {
- for_each_pipe_with_single_output(&data.display, pipe, output)
- igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
- drmModeModeInfo *mode;
-
- mode = igt_output_get_mode(output);
-
- test_scaler_with_rotation_pipe(&data,
- get_width(mode, scaler_with_rotation_tests[index].sf),
- get_height(mode, scaler_with_rotation_tests[index].sf),
- scaler_with_rotation_tests[index].is_upscale,
- pipe, output);
+ for_each_pipe_with_single_output(&data.display, pipe, output) {
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
+ drmModeModeInfo *mode;
+
+ mode = igt_output_get_mode(output);
+
+ test_scaler_with_rotation_pipe(&data,
+ get_width(mode, scaler_with_rotation_tests[index].sf),
+ get_height(mode, scaler_with_rotation_tests[index].sf),
+ scaler_with_rotation_tests[index].is_upscale,
+ pipe, output);
+ }
+ /*Restrict the execution of subtest to single pipe*/
+ break;
}
}
}
@@ -896,17 +902,20 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
for (int index = 0; index < ARRAY_SIZE(scaler_with_modifiers_tests); index++) {
igt_describe(scaler_with_modifiers_tests[index].describe);
igt_subtest_with_dynamic(scaler_with_modifiers_tests[index].name) {
- for_each_pipe_with_single_output(&data.display, pipe, output)
- igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
- drmModeModeInfo *mode;
-
- mode = igt_output_get_mode(output);
-
- test_scaler_with_modifier_pipe(&data,
- get_width(mode, scaler_with_rotation_tests[index].sf),
- get_height(mode, scaler_with_rotation_tests[index].sf),
- scaler_with_rotation_tests[index].is_upscale,
- pipe, output);
+ for_each_pipe_with_single_output(&data.display, pipe, output) {
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
+ drmModeModeInfo *mode;
+
+ mode = igt_output_get_mode(output);
+
+ test_scaler_with_modifier_pipe(&data,
+ get_width(mode, scaler_with_rotation_tests[index].sf),
+ get_height(mode, scaler_with_rotation_tests[index].sf),
+ scaler_with_rotation_tests[index].is_upscale,
+ pipe, output);
+ }
+ /*Restrict the execution of subtest to single pipe*/
+ break;
}
}
}
@@ -921,6 +930,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output))
test_scaler_with_pixel_format_pipe(&data, mode->hdisplay + 100,
mode->vdisplay + 100, false, pipe, output);
+ /*Restrict the execution of subtest to single pipe*/
+ break;
}
}
@@ -934,6 +945,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output))
test_scaler_with_rotation_pipe(&data, mode->hdisplay + 100,
mode->vdisplay + 100, false, pipe, output);
+ /*Restrict the execution of subtest to single pipe*/
+ break;
}
}
@@ -947,34 +960,42 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output))
test_scaler_with_modifier_pipe(&data, mode->hdisplay + 100,
mode->vdisplay + 100, false, pipe, output);
+ /*Restrict the execution of subtest to single pipe*/
+ break;
}
}
for (int index = 0; index < ARRAY_SIZE(scaler_with_2_planes_tests); index++) {
igt_describe(scaler_with_2_planes_tests[index].describe);
igt_subtest_with_dynamic(scaler_with_2_planes_tests[index].name) {
- for_each_pipe_with_single_output(&data.display, pipe, output)
- igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
- drmModeModeInfo *mode;
-
- mode = igt_output_get_mode(output);
-
- test_planes_scaling_combo(&data,
- get_width(mode, scaler_with_2_planes_tests[index].sf_plane1),
- get_height(mode, scaler_with_2_planes_tests[index].sf_plane1),
- get_width(mode, scaler_with_2_planes_tests[index].sf_plane2),
- get_height(mode, scaler_with_2_planes_tests[index].sf_plane2),
- pipe, output, scaler_with_2_planes_tests[index].test_type);
+ for_each_pipe_with_single_output(&data.display, pipe, output) {
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), igt_output_name(output)) {
+ drmModeModeInfo *mode;
+
+ mode = igt_output_get_mode(output);
+
+ test_planes_scaling_combo(&data,
+ get_width(mode, scaler_with_2_planes_tests[index].sf_plane1),
+ get_height(mode, scaler_with_2_planes_tests[index].sf_plane1),
+ get_width(mode, scaler_with_2_planes_tests[index].sf_plane2),
+ get_height(mode, scaler_with_2_planes_tests[index].sf_plane2),
+ pipe, output, scaler_with_2_planes_tests[index].test_type);
+ }
+ /*Restrict the execution of subtest to single pipe*/
+ break;
}
}
}
igt_describe("Negative test for number of scalers per pipe.");
igt_subtest_with_dynamic("invalid-num-scalers") {
- for_each_pipe_with_valid_output(&data.display, pipe, output)
+ for_each_pipe_with_valid_output(&data.display, pipe, output) {
igt_dynamic_f("pipe-%s-%s-invalid-num-scalers",
kmstest_pipe_name(pipe), igt_output_name(output))
test_invalid_num_scalers(&data, pipe, output);
+ /*Restrict the execution of subtest to single pipe*/
+ break;
+ }
}
}
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t 5/6] tests/kms_pipe_crc_basic: Restrict the execution of subtest to single pipe
2023-01-09 13:40 [igt-dev] [PATCH i-g-t 0/6] Modified few kms tests to reduce execution time Nidhi Gupta
` (3 preceding siblings ...)
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 4/6] tests/kms_plane_scaling: Restrict the execution of subtest " Nidhi Gupta
@ 2023-01-09 13:40 ` Nidhi Gupta
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 6/6] tests/kms_async_flips: Restrict the execution of the " Nidhi Gupta
` (2 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Nidhi Gupta @ 2023-01-09 13:40 UTC (permalink / raw)
To: igt-dev; +Cc: Nidhi Gupta
To reduce the overall execution time of the test, now
all the subtests will be executed on single pipe instead
of all the pipes.
Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com>
---
tests/kms_pipe_crc_basic.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c
index 91a1b8ab..dd846952 100644
--- a/tests/kms_pipe_crc_basic.c
+++ b/tests/kms_pipe_crc_basic.c
@@ -342,6 +342,8 @@ igt_main
test_read_crc(&data, pipe, output, tests[i].flags);
}
}
+ /*Restrict the execution of the subtest to single pipe*/
+ break;
}
}
}
@@ -352,6 +354,8 @@ igt_main
for_each_pipe_with_single_output(&data.display, pipe, output) {
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name)
test_disable_crc_after_crtc(&data, pipe, output);
+ /*Restrict the execution of the subtest to single pipe*/
+ break;
}
}
@@ -360,6 +364,8 @@ igt_main
for_each_pipe_with_single_output(&data.display, pipe, output) {
igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name)
test_compare_crc(&data, pipe, output);
+ /*Restrict the execution of the subtest to single pipe*/
+ break;
}
}
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t 6/6] tests/kms_async_flips: Restrict the execution of the subtest to single pipe
2023-01-09 13:40 [igt-dev] [PATCH i-g-t 0/6] Modified few kms tests to reduce execution time Nidhi Gupta
` (4 preceding siblings ...)
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 5/6] tests/kms_pipe_crc_basic: " Nidhi Gupta
@ 2023-01-09 13:40 ` Nidhi Gupta
2023-01-09 18:04 ` [igt-dev] ✓ Fi.CI.BAT: success for Modified few kms tests to reduce execution time Patchwork
2023-01-10 0:23 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
7 siblings, 0 replies; 9+ messages in thread
From: Nidhi Gupta @ 2023-01-09 13:40 UTC (permalink / raw)
To: igt-dev; +Cc: Nidhi Gupta
To reduce the overall execution time of the test, now
all the subtests will be executed on single pipe instead
of all the pipes.
Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com>
---
tests/kms_async_flips.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tests/kms_async_flips.c b/tests/kms_async_flips.c
index 7cb71f6b..80ddc8e5 100644
--- a/tests/kms_async_flips.c
+++ b/tests/kms_async_flips.c
@@ -554,6 +554,8 @@ static void run_test(data_t *data, void (*test)(data_t *))
if (!data->extended)
break;
}
+ /*Restrict the execution of the subtest to single pipe*/
+ break;
}
}
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Modified few kms tests to reduce execution time
2023-01-09 13:40 [igt-dev] [PATCH i-g-t 0/6] Modified few kms tests to reduce execution time Nidhi Gupta
` (5 preceding siblings ...)
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 6/6] tests/kms_async_flips: Restrict the execution of the " Nidhi Gupta
@ 2023-01-09 18:04 ` Patchwork
2023-01-10 0:23 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-01-09 18:04 UTC (permalink / raw)
To: Nidhi Gupta; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2971 bytes --]
== Series Details ==
Series: Modified few kms tests to reduce execution time
URL : https://patchwork.freedesktop.org/series/112555/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12559 -> IGTPW_8317
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/index.html
Participating hosts (38 -> 37)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_8317 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@gt_lrc:
- fi-rkl-guc: [PASS][1] -> [INCOMPLETE][2] ([i915#4983])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html
* igt@kms_setmode@basic-clone-single-crtc:
- fi-snb-2600: NOTRUN -> [SKIP][3] ([fdo#109271])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/fi-snb-2600/igt@kms_setmode@basic-clone-single-crtc.html
#### Possible fixes ####
* igt@gem_exec_gttfill@basic:
- fi-pnv-d510: [FAIL][4] ([i915#7229]) -> [PASS][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/fi-pnv-d510/igt@gem_exec_gttfill@basic.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/fi-pnv-d510/igt@gem_exec_gttfill@basic.html
* igt@i915_selftest@live@slpc:
- {bat-rpls-1}: [DMESG-FAIL][6] ([i915#6367]) -> [PASS][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/bat-rpls-1/igt@i915_selftest@live@slpc.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/bat-rpls-1/igt@i915_selftest@live@slpc.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#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
[i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077
[i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229
[i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7113 -> IGTPW_8317
CI-20190529: 20190529
CI_DRM_12559: b4a7d5ac8957c0b894b81d125b15b1ff45eaf5b2 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8317: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/index.html
IGT_7113: 15562e123ee6ed88163c7da2ef330dfe9bbd16a5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/index.html
[-- Attachment #2: Type: text/html, Size: 3463 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Modified few kms tests to reduce execution time
2023-01-09 13:40 [igt-dev] [PATCH i-g-t 0/6] Modified few kms tests to reduce execution time Nidhi Gupta
` (6 preceding siblings ...)
2023-01-09 18:04 ` [igt-dev] ✓ Fi.CI.BAT: success for Modified few kms tests to reduce execution time Patchwork
@ 2023-01-10 0:23 ` Patchwork
7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-01-10 0:23 UTC (permalink / raw)
To: Nidhi Gupta; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 29536 bytes --]
== Series Details ==
Series: Modified few kms tests to reduce execution time
URL : https://patchwork.freedesktop.org/series/112555/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12559_full -> IGTPW_8317_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/index.html
Participating hosts (14 -> 11)
------------------------------
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_8317_full:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k}:
- {shard-tglu}: NOTRUN -> [SKIP][1] +19 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-tglu-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* {igt@kms_chamelium_hpd@dp-hpd-after-suspend}:
- {shard-tglu-10}: NOTRUN -> [SKIP][2] +1 similar issue
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-tglu-10/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* {igt@kms_chamelium_hpd@vga-hpd-fast}:
- {shard-rkl}: NOTRUN -> [SKIP][3] +5 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html
* {igt@kms_chamelium_hpd@vga-hpd-without-ddc}:
- {shard-tglu-9}: NOTRUN -> [SKIP][4] +4 similar issues
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-tglu-9/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling@pipe-a-valid-mode:
- {shard-dg1}: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling@pipe-a-valid-mode.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling@pipe-a-valid-mode.html
Known issues
------------
Here are the changes found in IGTPW_8317_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [PASS][7] -> [FAIL][8] ([i915#2846])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-glk3/igt@gem_exec_fair@basic-deadline.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-glk2/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-glk: [PASS][9] -> [FAIL][10] ([i915#2842])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-glk1/igt@gem_exec_fair@basic-none@vcs0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-glk4/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-glk: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#4613])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-glk3/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@massive:
- shard-apl: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#4613])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-apl1/igt@gem_lmem_swapping@massive.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-apl: [PASS][13] -> [INCOMPLETE][14] ([i915#7708])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-apl1/igt@gem_partial_pwrite_pread@writes-after-reads.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-apl3/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-apl: NOTRUN -> [INCOMPLETE][15] ([i915#7708])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-apl3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_userptr_blits@vma-merge:
- shard-glk: NOTRUN -> [FAIL][16] ([i915#3318])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-glk7/igt@gem_userptr_blits@vma-merge.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [PASS][17] -> [DMESG-WARN][18] ([i915#4528])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc:
- shard-glk: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#3886]) +1 similar issue
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-glk5/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-1:
- shard-apl: NOTRUN -> [TIMEOUT][20] ([i915#7173])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-apl1/igt@kms_content_protection@atomic-dpms@pipe-a-dp-1.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
- shard-apl: [PASS][21] -> [FAIL][22] ([i915#2346])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
- shard-glk: [PASS][23] -> [FAIL][24] ([i915#2346])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2:
- shard-glk: [PASS][25] -> [FAIL][26] ([i915#79])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-glk4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][27] ([fdo#109271]) +30 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-glk5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-a-dp-1:
- shard-apl: NOTRUN -> [SKIP][28] ([fdo#109271]) +18 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-apl1/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-a-dp-1.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#658])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-glk5/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
* igt@runner@aborted:
- shard-snb: NOTRUN -> [FAIL][30] ([i915#4312])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-snb4/igt@runner@aborted.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- {shard-rkl}: [FAIL][31] ([i915#7742]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@fbdev@unaligned-read:
- {shard-rkl}: [SKIP][33] ([i915#2582]) -> [PASS][34] +2 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-5/igt@fbdev@unaligned-read.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-6/igt@fbdev@unaligned-read.html
* igt@gem_create@hog-create@smem0:
- {shard-rkl}: [FAIL][35] ([i915#7679]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-1/igt@gem_create@hog-create@smem0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-5/igt@gem_create@hog-create@smem0.html
* igt@gem_ctx_persistence@legacy-engines-hang@blt:
- {shard-rkl}: [SKIP][37] ([i915#6252]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-2/igt@gem_ctx_persistence@legacy-engines-hang@blt.html
* igt@gem_eio@in-flight-suspend:
- {shard-rkl}: [FAIL][39] ([fdo#103375]) -> [PASS][40] +1 similar issue
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-3/igt@gem_eio@in-flight-suspend.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-2/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@reset-stress:
- {shard-dg1}: [FAIL][41] ([i915#5784]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-dg1-14/igt@gem_eio@reset-stress.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-dg1-18/igt@gem_eio@reset-stress.html
* igt@gem_exec_reloc@basic-gtt-read:
- {shard-rkl}: [SKIP][43] ([i915#3281]) -> [PASS][44] +6 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-read.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-scanout@vcs0:
- {shard-tglu}: [SKIP][45] ([i915#3639]) -> [PASS][46] +4 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-tglu-6/igt@gem_exec_reloc@basic-scanout@vcs0.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-tglu-7/igt@gem_exec_reloc@basic-scanout@vcs0.html
* igt@gem_mmap_gtt@coherency:
- {shard-rkl}: [SKIP][47] ([fdo#111656]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-6/igt@gem_mmap_gtt@coherency.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-5/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_wc@set-cache-level:
- {shard-rkl}: [SKIP][49] ([i915#1850]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-4/igt@gem_mmap_wc@set-cache-level.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-4/igt@gem_mmap_wc@set-cache-level.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [DMESG-WARN][51] ([i915#5566] / [i915#716]) -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-glk3/igt@gen9_exec_parse@allowed-single.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-glk2/igt@gen9_exec_parse@allowed-single.html
* igt@i915_hangman@engine-engine-error@bcs0:
- {shard-rkl}: [SKIP][53] ([i915#6258]) -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-5/igt@i915_hangman@engine-engine-error@bcs0.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-3/igt@i915_hangman@engine-engine-error@bcs0.html
* igt@i915_pm_dc@dc6-dpms:
- {shard-tglu}: [FAIL][55] ([i915#3989] / [i915#454]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-tglu-1/igt@i915_pm_dc@dc6-dpms.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- {shard-dg1}: [SKIP][57] ([i915#1397]) -> [PASS][58] +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-dg1-14/igt@i915_pm_rpm@dpms-non-lpsp.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-dg1-16/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- {shard-dg1}: [DMESG-WARN][59] -> [PASS][60] +1 similar issue
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-dg1-16/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-dg1-16/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs:
- {shard-tglu}: [SKIP][61] ([i915#1845] / [i915#7651]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-tglu-6/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-tglu-8/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-glk: [FAIL][63] ([i915#2346]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-dp1:
- shard-apl: [DMESG-WARN][65] ([i915#180]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt:
- {shard-tglu}: [SKIP][67] ([i915#1849]) -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- {shard-rkl}: [SKIP][69] ([i915#1849] / [i915#4098]) -> [PASS][70] +15 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_properties@plane-properties-legacy:
- {shard-rkl}: [SKIP][71] ([i915#1849]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-5/igt@kms_properties@plane-properties-legacy.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-6/igt@kms_properties@plane-properties-legacy.html
* igt@kms_psr@cursor_mmap_cpu:
- {shard-rkl}: [SKIP][73] ([i915#1072]) -> [PASS][74] +1 similar issue
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-5/igt@kms_psr@cursor_mmap_cpu.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-6/igt@kms_psr@cursor_mmap_cpu.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- {shard-rkl}: [SKIP][75] ([i915#5461]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_universal_plane@universal-plane-pipe-d-functional:
- {shard-tglu}: [SKIP][77] ([fdo#109274]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-tglu-6/igt@kms_universal_plane@universal-plane-pipe-d-functional.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-tglu-4/igt@kms_universal_plane@universal-plane-pipe-d-functional.html
* igt@kms_vblank@pipe-b-query-idle:
- {shard-rkl}: [SKIP][79] ([i915#1845] / [i915#4098]) -> [PASS][80] +20 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-3/igt@kms_vblank@pipe-b-query-idle.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-6/igt@kms_vblank@pipe-b-query-idle.html
* igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm:
- {shard-tglu}: [SKIP][81] ([i915#7651]) -> [PASS][82] +7 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-tglu-6/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-tglu-8/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html
* igt@perf@gen12-mi-rpc:
- {shard-rkl}: [SKIP][83] ([fdo#109289]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-5/igt@perf@gen12-mi-rpc.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-4/igt@perf@gen12-mi-rpc.html
* igt@perf@mi-rpc:
- {shard-rkl}: [SKIP][85] ([i915#2434]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-4/igt@perf@mi-rpc.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-5/igt@perf@mi-rpc.html
* igt@perf_pmu@idle@rcs0:
- {shard-dg1}: [FAIL][87] ([i915#4349]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-dg1-19/igt@perf_pmu@idle@rcs0.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-dg1-16/igt@perf_pmu@idle@rcs0.html
- {shard-rkl}: [FAIL][89] ([i915#4349]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-1/igt@perf_pmu@idle@rcs0.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-6/igt@perf_pmu@idle@rcs0.html
* igt@prime_vgem@basic-fence-read:
- {shard-rkl}: [SKIP][91] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-rkl-6/igt@prime_vgem@basic-fence-read.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-rkl-5/igt@prime_vgem@basic-fence-read.html
* igt@sysfs_heartbeat_interval@precise@rcs0:
- {shard-dg1}: [FAIL][93] ([i915#1755]) -> [PASS][94] +4 similar issues
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12559/shard-dg1-19/igt@sysfs_heartbeat_interval@precise@rcs0.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/shard-dg1-18/igt@sysfs_heartbeat_interval@precise@rcs0.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[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#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#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[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#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
[i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[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#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[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#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#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[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#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[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#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#3639]: https://gitlab.freedesktop.org/drm/intel/issues/3639
[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#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
[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#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[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#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[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#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
[i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[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#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276
[i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
[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#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#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7113 -> IGTPW_8317
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_12559: b4a7d5ac8957c0b894b81d125b15b1ff45eaf5b2 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8317: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8317/index.html
IGT_7113: 15562e123ee6ed88163c7da2ef330dfe9bbd16a5 @ 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_8317/index.html
[-- Attachment #2: Type: text/html, Size: 25582 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-01-10 0:23 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-09 13:40 [igt-dev] [PATCH i-g-t 0/6] Modified few kms tests to reduce execution time Nidhi Gupta
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 1/6] tests/i915/kms_mmap_write_crc: Restrict the number of iteration to reduce the " Nidhi Gupta
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 2/6] tests/kms_plane_alpha_blend: Restrict the execution of subtest to single pipe Nidhi Gupta
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 3/6] tests/kms_color: Restrict the execution of subtests " Nidhi Gupta
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 4/6] tests/kms_plane_scaling: Restrict the execution of subtest " Nidhi Gupta
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 5/6] tests/kms_pipe_crc_basic: " Nidhi Gupta
2023-01-09 13:40 ` [igt-dev] [PATCH i-g-t 6/6] tests/kms_async_flips: Restrict the execution of the " Nidhi Gupta
2023-01-09 18:04 ` [igt-dev] ✓ Fi.CI.BAT: success for Modified few kms tests to reduce execution time Patchwork
2023-01-10 0:23 ` [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