All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/kms_plane_alpha_blend: Limit the test execution
@ 2023-02-08  9:56 Nidhi Gupta
  2023-02-08 15:22 ` Modem, Bhanuprakash
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Nidhi Gupta @ 2023-02-08  9:56 UTC (permalink / raw)
  To: igt-dev; +Cc: Nidhi Gupta

To optimize  the test execution time on hardware and simulation,
limit the execution to two (first & last) pipes and 2 planes
(first & last).

This patch will also provide an option (command line flag '-e') to
execute on all pipes and planes.

Example: ./kms_plane_alpha_blend -e --run-subtest alpha-7efc

V2: Edited commit message (Bhanu)
V3: New function for simulation constraints (Kamil)
    Update commit message (Bhanu)
v4: Restrict the execution only on 2 pipes for
    real hardware aswell (Ankit)

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com>
---
 tests/kms_plane_alpha_blend.c | 72 ++++++++++++++++++++++++++++++++---
 1 file changed, 67 insertions(+), 5 deletions(-)

diff --git a/tests/kms_plane_alpha_blend.c b/tests/kms_plane_alpha_blend.c
index 38272ccb..03e9c5b5 100644
--- a/tests/kms_plane_alpha_blend.c
+++ b/tests/kms_plane_alpha_blend.c
@@ -28,6 +28,10 @@
 
 IGT_TEST_DESCRIPTION("Test plane alpha and blending mode properties");
 
+static bool extended;
+static enum pipe active_pipes[IGT_MAX_PIPES];
+static uint32_t last_pipe;
+
 typedef struct {
 	int gfx_fd;
 	igt_display_t display;
@@ -482,8 +486,10 @@ static void run_test_on_pipe_planes(data_t *data, enum pipe pipe, igt_output_t *
 {
 	igt_display_t *display = &data->display;
 	igt_plane_t *plane;
+	int first_plane = -1;
+	int last_plane = -1;
 
-	for_each_plane_on_pipe(display, pipe, plane) {
+	for_each_plane_on_pipe(&data->display, pipe, plane) {
 		if (!igt_plane_has_prop(plane, IGT_PLANE_ALPHA))
 			continue;
 
@@ -496,9 +502,30 @@ static void run_test_on_pipe_planes(data_t *data, enum pipe pipe, igt_output_t *
 		if (must_multiply && !has_multiplied_alpha(data, plane))
 			continue;
 
-		igt_info("Testing plane %u\n", plane->index);
-		test(data, pipe, plane);
-		igt_plane_set_fb(plane, NULL);
+		if (first_plane < 0)
+			first_plane = j__;
+
+		last_plane = j__;
+
+		if (extended) {
+			igt_info("Testing plane %u\n", plane->index);
+			test(data, pipe, plane);
+			igt_plane_set_fb(plane, NULL);
+		}
+	}
+
+	if (!extended) {
+		for_each_plane_on_pipe(&data->display, pipe, plane) {
+			if (j__ != first_plane && j__ != last_plane)
+				continue;
+
+			/* reset plane alpha properties between each plane */
+			reset_alpha(display, pipe);
+
+			igt_info("Testing plane %u\n", plane->index);
+			test(data, pipe, plane);
+			igt_plane_set_fb(plane, NULL);
+		}
 	}
 
 	igt_output_set_pipe(output, PIPE_NONE);
@@ -611,6 +638,16 @@ static bool pipe_check(data_t *data, enum pipe pipe,
 	}
 }
 
+static bool execution_constraint(enum pipe pipe)
+{
+	if (!extended &&
+	    pipe != active_pipes[0] &&
+	    pipe != active_pipes[last_pipe])
+		return true;
+
+	return false;
+}
+
 static void run_subtests(data_t *data)
 {
 	igt_output_t *output;
@@ -621,6 +658,8 @@ static void run_subtests(data_t *data)
 
 		igt_subtest_with_dynamic(subtests[i].name) {
 			for_each_pipe_with_single_output(&data->display, pipe, output) {
+				if (execution_constraint(pipe))
+					continue;
 				prepare_crtc(data, output, pipe);
 				if (!pipe_check(data, pipe, subtests[i].blend, subtests[i].must_multiply))
 					continue;
@@ -633,15 +672,38 @@ static void run_subtests(data_t *data)
 	}
 }
 
-igt_main
+static int opt_handler(int opt, int opt_index, void *_data)
+{
+	switch (opt) {
+	case 'e':
+		extended = true;
+		break;
+	default:
+		return IGT_OPT_HANDLER_ERROR;
+	}
+
+	return IGT_OPT_HANDLER_SUCCESS;
+}
+
+const char *help_str =
+	"  -e \tExtended tests.\n";
+
+igt_main_args("e", NULL, help_str, opt_handler, NULL)
 {
 	data_t data = {};
+	enum pipe pipe;
+
+	last_pipe = 0;
 
 	igt_fixture {
 		data.gfx_fd = drm_open_driver_master(DRIVER_ANY);
 		igt_require_pipe_crc(data.gfx_fd);
 		igt_display_require(&data.display, data.gfx_fd);
 		igt_require(data.display.is_atomic);
+		/* Get active pipes. */
+		for_each_pipe(&data.display, pipe)
+			active_pipes[last_pipe++] = pipe;
+		last_pipe--;
 	}
 
 	run_subtests(&data);
-- 
2.39.0

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

* Re: [igt-dev] [PATCH i-g-t] tests/kms_plane_alpha_blend: Limit the test execution
  2023-02-08  9:56 [igt-dev] [PATCH i-g-t] tests/kms_plane_alpha_blend: Limit the test execution Nidhi Gupta
@ 2023-02-08 15:22 ` Modem, Bhanuprakash
  2023-02-08 16:37   ` Nautiyal, Ankit K
  2023-02-08 18:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
  2023-02-09  4:14 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  2 siblings, 1 reply; 5+ messages in thread
From: Modem, Bhanuprakash @ 2023-02-08 15:22 UTC (permalink / raw)
  To: Nidhi Gupta, igt-dev

Hi Nidhi,

On Wed-08-02-2023 03:26 pm, Nidhi Gupta wrote:
> To optimize  the test execution time on hardware and simulation,
> limit the execution to two (first & last) pipes and 2 planes
> (first & last).
> 
> This patch will also provide an option (command line flag '-e') to
> execute on all pipes and planes.
> 
> Example: ./kms_plane_alpha_blend -e --run-subtest alpha-7efc
> 
> V2: Edited commit message (Bhanu)
> V3: New function for simulation constraints (Kamil)
>      Update commit message (Bhanu)
> v4: Restrict the execution only on 2 pipes for
>      real hardware aswell (Ankit)
> 
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com>
> ---
>   tests/kms_plane_alpha_blend.c | 72 ++++++++++++++++++++++++++++++++---
>   1 file changed, 67 insertions(+), 5 deletions(-)
> 
> diff --git a/tests/kms_plane_alpha_blend.c b/tests/kms_plane_alpha_blend.c
> index 38272ccb..03e9c5b5 100644
> --- a/tests/kms_plane_alpha_blend.c
> +++ b/tests/kms_plane_alpha_blend.c
> @@ -28,6 +28,10 @@
>   
>   IGT_TEST_DESCRIPTION("Test plane alpha and blending mode properties");
>   
> +static bool extended;
> +static enum pipe active_pipes[IGT_MAX_PIPES];
> +static uint32_t last_pipe;
> +
>   typedef struct {
>   	int gfx_fd;
>   	igt_display_t display;
> @@ -482,8 +486,10 @@ static void run_test_on_pipe_planes(data_t *data, enum pipe pipe, igt_output_t *
>   {
>   	igt_display_t *display = &data->display;
>   	igt_plane_t *plane;
> +	int first_plane = -1;
> +	int last_plane = -1;
>   
> -	for_each_plane_on_pipe(display, pipe, plane) {
> +	for_each_plane_on_pipe(&data->display, pipe, plane) {

Why this change? We already have a struct display.

>   		if (!igt_plane_has_prop(plane, IGT_PLANE_ALPHA))
>   			continue;
>   
> @@ -496,9 +502,30 @@ static void run_test_on_pipe_planes(data_t *data, enum pipe pipe, igt_output_t *
>   		if (must_multiply && !has_multiplied_alpha(data, plane))
>   			continue;
>   
> -		igt_info("Testing plane %u\n", plane->index);
> -		test(data, pipe, plane);
> -		igt_plane_set_fb(plane, NULL);
> +		if (first_plane < 0)
> +			first_plane = j__;
> +
> +		last_plane = j__;
> +
> +		if (extended) {
> +			igt_info("Testing plane %u\n", plane->index);
> +			test(data, pipe, plane);
> +			igt_plane_set_fb(plane, NULL);
> +		}
> +	}
> +
> +	if (!extended) {
> +		for_each_plane_on_pipe(&data->display, pipe, plane) {
> +			if (j__ != first_plane && j__ != last_plane)
> +				continue;
> +
> +			/* reset plane alpha properties between each plane */
> +			reset_alpha(display, pipe);
> +
> +			igt_info("Testing plane %u\n", plane->index);
> +			test(data, pipe, plane);
> +			igt_plane_set_fb(plane, NULL);
> +		}

There is no issue with this logic, just for readability purpose how 
about below logic?

                 if (must_multiply && !has_multiplied_alpha(data, plane))
                         continue;

+               /* Get first & last valid planes. */
+               if (first_plane < 0)
+                       first_plane = j__;
+
+               last_plane = j__;
+       }
+
+       for_each_plane_on_pipe(display, pipe, plane) {
+               if (!igt_plane_has_prop(plane, IGT_PLANE_ALPHA))
+                       continue;
+
+               if (blend && !igt_plane_has_prop(plane, 
IGT_PLANE_PIXEL_BLEND_MODE))
+                       continue;
+
+               /* Reset plane alpha properties between each plane. */
+               reset_alpha(display, pipe);
+
+               if (must_multiply && !has_multiplied_alpha(data, plane))
+                       continue;
+
+               if (!extended && j__ != first_plane && j__ != last_plane)
+                       continue;
+
                 igt_info("Testing plane %u\n", plane->index);
                 test(data, pipe, plane);

- Bhanu

>   	}
>   
>   	igt_output_set_pipe(output, PIPE_NONE);
> @@ -611,6 +638,16 @@ static bool pipe_check(data_t *data, enum pipe pipe,
>   	}
>   }
>   
> +static bool execution_constraint(enum pipe pipe)
> +{
> +	if (!extended &&
> +	    pipe != active_pipes[0] &&
> +	    pipe != active_pipes[last_pipe])
> +		return true;
> +
> +	return false;
> +}
> +
>   static void run_subtests(data_t *data)
>   {
>   	igt_output_t *output;
> @@ -621,6 +658,8 @@ static void run_subtests(data_t *data)
>   
>   		igt_subtest_with_dynamic(subtests[i].name) {
>   			for_each_pipe_with_single_output(&data->display, pipe, output) {
> +				if (execution_constraint(pipe))
> +					continue;
>   				prepare_crtc(data, output, pipe);
>   				if (!pipe_check(data, pipe, subtests[i].blend, subtests[i].must_multiply))
>   					continue;
> @@ -633,15 +672,38 @@ static void run_subtests(data_t *data)
>   	}
>   }
>   
> -igt_main
> +static int opt_handler(int opt, int opt_index, void *_data)
> +{
> +	switch (opt) {
> +	case 'e':
> +		extended = true;
> +		break;
> +	default:
> +		return IGT_OPT_HANDLER_ERROR;
> +	}
> +
> +	return IGT_OPT_HANDLER_SUCCESS;
> +}
> +
> +const char *help_str =
> +	"  -e \tExtended tests.\n";
> +
> +igt_main_args("e", NULL, help_str, opt_handler, NULL)
>   {
>   	data_t data = {};
> +	enum pipe pipe;
> +
> +	last_pipe = 0;
>   
>   	igt_fixture {
>   		data.gfx_fd = drm_open_driver_master(DRIVER_ANY);
>   		igt_require_pipe_crc(data.gfx_fd);
>   		igt_display_require(&data.display, data.gfx_fd);
>   		igt_require(data.display.is_atomic);
> +		/* Get active pipes. */
> +		for_each_pipe(&data.display, pipe)
> +			active_pipes[last_pipe++] = pipe;
> +		last_pipe--;
>   	}
>   
>   	run_subtests(&data);

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

* Re: [igt-dev] [PATCH i-g-t] tests/kms_plane_alpha_blend: Limit the test execution
  2023-02-08 15:22 ` Modem, Bhanuprakash
@ 2023-02-08 16:37   ` Nautiyal, Ankit K
  0 siblings, 0 replies; 5+ messages in thread
From: Nautiyal, Ankit K @ 2023-02-08 16:37 UTC (permalink / raw)
  To: Modem, Bhanuprakash, Nidhi Gupta, igt-dev


On 2/8/2023 8:52 PM, Modem, Bhanuprakash wrote:
> Hi Nidhi,
>
> On Wed-08-02-2023 03:26 pm, Nidhi Gupta wrote:
>> To optimize  the test execution time on hardware and simulation,
>> limit the execution to two (first & last) pipes and 2 planes
>> (first & last).
>>
>> This patch will also provide an option (command line flag '-e') to
>> execute on all pipes and planes.
>>
>> Example: ./kms_plane_alpha_blend -e --run-subtest alpha-7efc
>>
>> V2: Edited commit message (Bhanu)
>> V3: New function for simulation constraints (Kamil)
>>      Update commit message (Bhanu)
>> v4: Restrict the execution only on 2 pipes for
>>      real hardware aswell (Ankit)
>>
>> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
>> Signed-off-by: Nidhi Gupta <nidhi1.gupta@intel.com>
>> ---
>>   tests/kms_plane_alpha_blend.c | 72 ++++++++++++++++++++++++++++++++---
>>   1 file changed, 67 insertions(+), 5 deletions(-)
>>
>> diff --git a/tests/kms_plane_alpha_blend.c 
>> b/tests/kms_plane_alpha_blend.c
>> index 38272ccb..03e9c5b5 100644
>> --- a/tests/kms_plane_alpha_blend.c
>> +++ b/tests/kms_plane_alpha_blend.c
>> @@ -28,6 +28,10 @@
>>     IGT_TEST_DESCRIPTION("Test plane alpha and blending mode 
>> properties");
>>   +static bool extended;
>> +static enum pipe active_pipes[IGT_MAX_PIPES];
>> +static uint32_t last_pipe;
>> +
>>   typedef struct {
>>       int gfx_fd;
>>       igt_display_t display;
>> @@ -482,8 +486,10 @@ static void run_test_on_pipe_planes(data_t 
>> *data, enum pipe pipe, igt_output_t *
>>   {
>>       igt_display_t *display = &data->display;
>>       igt_plane_t *plane;
>> +    int first_plane = -1;
>> +    int last_plane = -1;
>>   -    for_each_plane_on_pipe(display, pipe, plane) {
>> +    for_each_plane_on_pipe(&data->display, pipe, plane) {
>
> Why this change? We already have a struct display.
>
>>           if (!igt_plane_has_prop(plane, IGT_PLANE_ALPHA))
>>               continue;
>>   @@ -496,9 +502,30 @@ static void run_test_on_pipe_planes(data_t 
>> *data, enum pipe pipe, igt_output_t *
>>           if (must_multiply && !has_multiplied_alpha(data, plane))
>>               continue;
>>   -        igt_info("Testing plane %u\n", plane->index);
>> -        test(data, pipe, plane);
>> -        igt_plane_set_fb(plane, NULL);
>> +        if (first_plane < 0)
>> +            first_plane = j__;
>> +
>> +        last_plane = j__;
>> +
>> +        if (extended) {
>> +            igt_info("Testing plane %u\n", plane->index);
>> +            test(data, pipe, plane);
>> +            igt_plane_set_fb(plane, NULL);
>> +        }
>> +    }
>> +
>> +    if (!extended) {
>> +        for_each_plane_on_pipe(&data->display, pipe, plane) {
>> +            if (j__ != first_plane && j__ != last_plane)
>> +                continue;
>> +
>> +            /* reset plane alpha properties between each plane */
>> +            reset_alpha(display, pipe);
>> +
>> +            igt_info("Testing plane %u\n", plane->index);
>> +            test(data, pipe, plane);
>> +            igt_plane_set_fb(plane, NULL);
>> +        }
>
> There is no issue with this logic, just for readability purpose how 
> about below logic?
>
>                 if (must_multiply && !has_multiplied_alpha(data, plane))
>                         continue;
>
> +               /* Get first & last valid planes. */
> +               if (first_plane < 0)
> +                       first_plane = j__;
> +
> +               last_plane = j__;
> +       }
> +
> +       for_each_plane_on_pipe(display, pipe, plane) {
> +               if (!igt_plane_has_prop(plane, IGT_PLANE_ALPHA))
> +                       continue;
> +
> +               if (blend && !igt_plane_has_prop(plane, 
> IGT_PLANE_PIXEL_BLEND_MODE))
> +                       continue;
> +
> +               /* Reset plane alpha properties between each plane. */
> +               reset_alpha(display, pipe);
> +
> +               if (must_multiply && !has_multiplied_alpha(data, plane))
> +                       continue;
> +
> +               if (!extended && j__ != first_plane && j__ != last_plane)
> +                       continue;
> +
>                 igt_info("Testing plane %u\n", plane->index);
>                 test(data, pipe, plane);
>
> - Bhanu

I agree, this looks more intuitive.


>
>>       }
>>         igt_output_set_pipe(output, PIPE_NONE);
>> @@ -611,6 +638,16 @@ static bool pipe_check(data_t *data, enum pipe 
>> pipe,
>>       }
>>   }
>>   +static bool execution_constraint(enum pipe pipe)
>> +{
>> +    if (!extended &&
>> +        pipe != active_pipes[0] &&
>> +        pipe != active_pipes[last_pipe])
>> +        return true;
>> +
>> +    return false;
>> +}
>> +
>>   static void run_subtests(data_t *data)
>>   {
>>       igt_output_t *output;
>> @@ -621,6 +658,8 @@ static void run_subtests(data_t *data)
>>             igt_subtest_with_dynamic(subtests[i].name) {
>> for_each_pipe_with_single_output(&data->display, pipe, output) {
>> +                if (execution_constraint(pipe))
>> +                    continue;
>>                   prepare_crtc(data, output, pipe);
>>                   if (!pipe_check(data, pipe, subtests[i].blend, 
>> subtests[i].must_multiply))
>>                       continue;
>> @@ -633,15 +672,38 @@ static void run_subtests(data_t *data)
>>       }
>>   }
>>   -igt_main
>> +static int opt_handler(int opt, int opt_index, void *_data)
>> +{
>> +    switch (opt) {
>> +    case 'e':
>> +        extended = true;
>> +        break;
>> +    default:
>> +        return IGT_OPT_HANDLER_ERROR;
>> +    }
>> +
>> +    return IGT_OPT_HANDLER_SUCCESS;
>> +}
>> +
>> +const char *help_str =
>> +    "  -e \tExtended tests.\n";
>> +
>> +igt_main_args("e", NULL, help_str, opt_handler, NULL)
>>   {
>>       data_t data = {};
>> +    enum pipe pipe;

This declaration can be moved in the fixture block where it is used.


Regards,

Ankit


>> +
>> +    last_pipe = 0;
>>         igt_fixture {
>>           data.gfx_fd = drm_open_driver_master(DRIVER_ANY);
>>           igt_require_pipe_crc(data.gfx_fd);
>>           igt_display_require(&data.display, data.gfx_fd);
>>           igt_require(data.display.is_atomic);
>> +        /* Get active pipes. */
>> +        for_each_pipe(&data.display, pipe)
>> +            active_pipes[last_pipe++] = pipe;
>> +        last_pipe--;
>>       }
>>         run_subtests(&data);

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_alpha_blend: Limit the test execution
  2023-02-08  9:56 [igt-dev] [PATCH i-g-t] tests/kms_plane_alpha_blend: Limit the test execution Nidhi Gupta
  2023-02-08 15:22 ` Modem, Bhanuprakash
@ 2023-02-08 18:37 ` Patchwork
  2023-02-09  4:14 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2023-02-08 18:37 UTC (permalink / raw)
  To: Nidhi Gupta; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 2966 bytes --]

== Series Details ==

Series: tests/kms_plane_alpha_blend: Limit the test execution
URL   : https://patchwork.freedesktop.org/series/113776/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12713 -> IGTPW_8464
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/index.html

Participating hosts (37 -> 36)
------------------------------

  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@i915_selftest@live@hangcheck:
    - {bat-adlm-1}:       [ABORT][1] -> [PASS][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/bat-adlm-1/igt@i915_selftest@live@hangcheck.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/bat-adlm-1/igt@i915_selftest@live@hangcheck.html
    - fi-skl-guc:         [DMESG-WARN][3] -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/fi-skl-guc/igt@i915_selftest@live@hangcheck.html

  * igt@i915_selftest@live@requests:
    - {bat-rpls-1}:       [ABORT][5] ([i915#7911]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/bat-rpls-1/igt@i915_selftest@live@requests.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/bat-rpls-1/igt@i915_selftest@live@requests.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#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
  [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
  [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
  [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911
  [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
  [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
  [i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982
  [i915#7996]: https://gitlab.freedesktop.org/drm/intel/issues/7996


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7153 -> IGTPW_8464

  CI-20190529: 20190529
  CI_DRM_12713: 5180055794b438ce688a6804afb0af08e626ebab @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8464: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/index.html
  IGT_7153: f47f859f13376958a2bd199423b1f0ff53dddbe0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/index.html

[-- Attachment #2: Type: text/html, Size: 2949 bytes --]

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_plane_alpha_blend: Limit the test execution
  2023-02-08  9:56 [igt-dev] [PATCH i-g-t] tests/kms_plane_alpha_blend: Limit the test execution Nidhi Gupta
  2023-02-08 15:22 ` Modem, Bhanuprakash
  2023-02-08 18:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2023-02-09  4:14 ` Patchwork
  2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2023-02-09  4:14 UTC (permalink / raw)
  To: Nidhi Gupta; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 17974 bytes --]

== Series Details ==

Series: tests/kms_plane_alpha_blend: Limit the test execution
URL   : https://patchwork.freedesktop.org/series/113776/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12713_full -> IGTPW_8464_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/index.html

Participating hosts (10 -> 10)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [PASS][1] -> [FAIL][2] ([i915#2842]) +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1:
    - shard-glk:          [PASS][3] -> [FAIL][4] ([i915#79])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-glk4/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-glk7/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html

  
#### Possible fixes ####

  * igt@fbdev@info:
    - {shard-rkl}:        [SKIP][5] ([i915#2582]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-rkl-1/igt@fbdev@info.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-rkl-6/igt@fbdev@info.html

  * igt@gem_eio@in-flight-external:
    - {shard-rkl}:        [ABORT][7] ([i915#7811]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-rkl-4/igt@gem_eio@in-flight-external.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-rkl-4/igt@gem_eio@in-flight-external.html

  * igt@gem_exec_endless@dispatch@bcs0:
    - {shard-rkl}:        [SKIP][9] ([i915#6247]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-rkl-5/igt@gem_exec_endless@dispatch@bcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-rkl-1/igt@gem_exec_endless@dispatch@bcs0.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-glk:          [FAIL][11] ([i915#2842]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-glk3/igt@gem_exec_fair@basic-none@vecs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-glk9/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_reloc@basic-write-read:
    - {shard-rkl}:        [SKIP][13] ([i915#3281]) -> [PASS][14] +6 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-rkl-2/igt@gem_exec_reloc@basic-write-read.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html

  * igt@gem_set_tiling_vs_pwrite:
    - {shard-rkl}:        [SKIP][15] ([i915#3282]) -> [PASS][16] +2 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html

  * igt@gen9_exec_parse@bb-secure:
    - {shard-rkl}:        [SKIP][17] ([i915#2527]) -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-rkl-1/igt@gen9_exec_parse@bb-secure.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-rkl-5/igt@gen9_exec_parse@bb-secure.html

  * igt@i915_hangman@engine-engine-error@bcs0:
    - {shard-rkl}:        [SKIP][19] ([i915#6258]) -> [PASS][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-rkl-5/igt@i915_hangman@engine-engine-error@bcs0.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-rkl-3/igt@i915_hangman@engine-engine-error@bcs0.html

  * igt@i915_pm_dc@dc5-dpms:
    - {shard-rkl}:        [FAIL][21] ([i915#7330]) -> [PASS][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-rkl-5/igt@i915_pm_dc@dc5-dpms.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-rkl-3/igt@i915_pm_dc@dc5-dpms.html

  * igt@i915_selftest@live@gt_heartbeat:
    - shard-glk:          [DMESG-FAIL][23] ([i915#5334]) -> [PASS][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-glk8/igt@i915_selftest@live@gt_heartbeat.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-glk5/igt@i915_selftest@live@gt_heartbeat.html

  * igt@kms_dp_aux_dev:
    - {shard-rkl}:        [SKIP][25] ([i915#1257]) -> [PASS][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-rkl-1/igt@kms_dp_aux_dev.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-rkl-6/igt@kms_dp_aux_dev.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
    - {shard-rkl}:        [SKIP][27] ([i915#1849] / [i915#4098]) -> [PASS][28] +17 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html

  * igt@kms_properties@crtc-properties-atomic:
    - {shard-rkl}:        [SKIP][29] ([i915#1849]) -> [PASS][30]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-rkl-4/igt@kms_properties@crtc-properties-atomic.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-rkl-6/igt@kms_properties@crtc-properties-atomic.html

  * igt@kms_psr@sprite_mmap_gtt:
    - {shard-rkl}:        [SKIP][31] ([i915#1072]) -> [PASS][32] +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-rkl-1/igt@kms_psr@sprite_mmap_gtt.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-rkl-6/igt@kms_psr@sprite_mmap_gtt.html

  * igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b:
    - {shard-rkl}:        [SKIP][33] ([i915#4070] / [i915#4098]) -> [PASS][34]
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-rkl-2/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-rkl-6/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b.html

  * igt@kms_vblank@pipe-b-query-idle:
    - {shard-rkl}:        [SKIP][35] ([i915#1845] / [i915#4098]) -> [PASS][36] +16 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-rkl-2/igt@kms_vblank@pipe-b-query-idle.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-rkl-6/igt@kms_vblank@pipe-b-query-idle.html

  * igt@perf@gen8-unprivileged-single-ctx-counters:
    - {shard-rkl}:        [SKIP][37] ([i915#2436]) -> [PASS][38]
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html

  * igt@prime_vgem@basic-write:
    - {shard-rkl}:        [SKIP][39] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12713/shard-rkl-2/igt@prime_vgem@basic-write.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/shard-rkl-5/igt@prime_vgem@basic-write.html

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

  [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#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#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#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#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
  [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
  [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#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#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#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [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#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
  [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#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [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#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [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#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#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
  [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#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
  [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
  [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403
  [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#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
  [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7330]: https://gitlab.freedesktop.org/drm/intel/issues/7330
  [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
  [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
  [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
  [i915#7811]: https://gitlab.freedesktop.org/drm/intel/issues/7811
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
  [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
  [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7153 -> IGTPW_8464

  CI-20190529: 20190529
  CI_DRM_12713: 5180055794b438ce688a6804afb0af08e626ebab @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8464: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/index.html
  IGT_7153: f47f859f13376958a2bd199423b1f0ff53dddbe0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8464/index.html

[-- Attachment #2: Type: text/html, Size: 11050 bytes --]

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

end of thread, other threads:[~2023-02-09  4:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-08  9:56 [igt-dev] [PATCH i-g-t] tests/kms_plane_alpha_blend: Limit the test execution Nidhi Gupta
2023-02-08 15:22 ` Modem, Bhanuprakash
2023-02-08 16:37   ` Nautiyal, Ankit K
2023-02-08 18:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2023-02-09  4:14 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.