All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/sink_crc: Remove kms_sink_crc_basic
@ 2018-07-14 23:39 Dhinakaran Pandiyan
  2018-07-15  0:05 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Dhinakaran Pandiyan @ 2018-07-14 23:39 UTC (permalink / raw)
  To: igt-dev; +Cc: Dhinakaran Pandiyan, Rodrigo Vivi

"drm/i915: Kill sink_crc for good" removes the kernel support for sink
crc.

References: https://patchwork.freedesktop.org/series/46039/
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com>
---
 tests/Makefile.sources                |   1 -
 tests/intel-ci/fast-feedback.testlist |   1 -
 tests/kms_sink_crc_basic.c            | 156 --------------------------
 tests/meson.build                     |   1 -
 4 files changed, 159 deletions(-)
 delete mode 100644 tests/kms_sink_crc_basic.c

diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index 8fec6ffe..4555045c 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -204,7 +204,6 @@ TESTS_progs = \
 	kms_rmfb \
 	kms_rotation_crc \
 	kms_setmode \
-	kms_sink_crc_basic \
 	kms_sysfs_edid_timing \
 	kms_tv_load_detect \
 	kms_universal_plane \
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index aa861d39..cb3346f8 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -245,7 +245,6 @@ igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b
 igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c
 igt@kms_psr@basic
 igt@kms_setmode@basic-clone-single-crtc
-igt@kms_sink_crc_basic
 igt@pm_backlight@basic-brightness
 igt@pm_rpm@basic-pci-d3-state
 igt@pm_rpm@basic-rte
diff --git a/tests/kms_sink_crc_basic.c b/tests/kms_sink_crc_basic.c
deleted file mode 100644
index 1c31e30a..00000000
--- a/tests/kms_sink_crc_basic.c
+++ /dev/null
@@ -1,156 +0,0 @@
-/*
- * Copyright © 2013 Intel Corporation
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice (including the next
- * paragraph) shall be included in all copies or substantial portions of the
- * Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- * IN THE SOFTWARE.
- *
- */
-
-#include "igt.h"
-#include "igt_sysfs.h"
-#include <errno.h>
-#include <limits.h>
-#include <stdbool.h>
-#include <stdio.h>
-#include <string.h>
-
-#include "drm_fourcc.h"
-
-
-enum color {
-	RED,
-	GREEN,
-};
-
-typedef struct {
-	int drm_fd;
-	igt_display_t display;
-	struct igt_fb fb_green, fb_red;
-	igt_plane_t *primary;
-} data_t;
-
-static void assert_color(int dir, enum color color)
-{
-	unsigned int r, g, b;
-
-	igt_require_f(igt_sysfs_scanf(dir,
-				      "i915_sink_crc_eDP1",
-				      "%4x%4x%4x",
-				      &r, &g, &b) == 3,
-		      "Sink CRC is unreliable on this machine. Try manual debug with --interactive-debug=no-crc\n");
-
-	/* Black screen is always invalid */
-	igt_assert_neq(r | g | b, 0);
-
-	switch (color) {
-	case RED:
-		igt_assert_lt(0, r);
-		igt_assert_eq(0, g);
-		igt_assert_eq(0, b);
-		igt_debug("sink CRC for red %.4x%.4x%.4x\n", r, g, b);
-		break;
-	case GREEN:
-		igt_assert_eq(0, r);
-		igt_assert_lt(0, g);
-		igt_assert_eq(0, b);
-		igt_debug("sink CRC for green %.4x%.4x%.4x\n", r, g, b);
-		break;
-	default:
-		igt_fail(IGT_EXIT_FAILURE);
-	}
-}
-
-static void basic_sink_crc_check(data_t *data)
-{
-	int dir;
-
-	dir = igt_debugfs_dir(data->drm_fd);
-
-	/* Go Green */
-	igt_plane_set_fb(data->primary, &data->fb_green);
-	igt_display_commit(&data->display);
-
-	/* It should be Green */
-	assert_color(dir, GREEN);
-
-	/* Go Red */
-	igt_plane_set_fb(data->primary, &data->fb_red);
-	igt_display_commit(&data->display);
-
-	/* It should be Red */
-	assert_color(dir, RED);
-
-	close(dir);
-}
-
-static void run_test(data_t *data)
-{
-	igt_display_t *display = &data->display;
-	igt_output_t *output;
-	drmModeModeInfo *mode;
-	enum pipe pipe;
-
-	for_each_pipe_with_valid_output(display, pipe, output) {
-		drmModeConnectorPtr c = output->config.connector;
-
-		if (c->connector_type != DRM_MODE_CONNECTOR_eDP)
-			continue;
-
-		igt_output_set_pipe(output, pipe);
-
-		mode = igt_output_get_mode(output);
-
-		igt_create_color_fb(data->drm_fd,
-				    mode->hdisplay, mode->vdisplay,
-				    DRM_FORMAT_XRGB8888,
-				    LOCAL_I915_FORMAT_MOD_X_TILED,
-				    0.0, 1.0, 0.0,
-				    &data->fb_green);
-
-		igt_create_color_fb(data->drm_fd,
-				    mode->hdisplay, mode->vdisplay,
-				    DRM_FORMAT_XRGB8888,
-				    LOCAL_I915_FORMAT_MOD_X_TILED,
-				    1.0, 0.0, 0.0,
-				    &data->fb_red);
-
-		data->primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
-
-		basic_sink_crc_check(data);
-		return;
-	}
-
-	igt_skip("no eDP with CRC support found\n");
-}
-
-igt_simple_main
-{
-	data_t data = {};
-
-	igt_skip_on_simulation();
-
-	data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
-
-	kmstest_set_vt_graphics_mode();
-	igt_display_init(&data.display, data.drm_fd);
-
-	run_test(&data);
-
-	igt_display_fini(&data.display);
-}
diff --git a/tests/meson.build b/tests/meson.build
index 704bd13f..abf38a15 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -180,7 +180,6 @@ test_progs = [
 	'kms_rmfb',
 	'kms_rotation_crc',
 	'kms_setmode',
-	'kms_sink_crc_basic',
 	'kms_sysfs_edid_timing',
 	'kms_tv_load_detect',
 	'kms_universal_plane',
-- 
2.17.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/sink_crc: Remove kms_sink_crc_basic
  2018-07-14 23:39 [igt-dev] [PATCH i-g-t] tests/sink_crc: Remove kms_sink_crc_basic Dhinakaran Pandiyan
@ 2018-07-15  0:05 ` Patchwork
  2018-07-15  1:06 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  2018-07-16 17:25 ` [igt-dev] [PATCH i-g-t] " Rodrigo Vivi
  2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2018-07-15  0:05 UTC (permalink / raw)
  To: Dhinakaran Pandiyan; +Cc: igt-dev

== Series Details ==

Series: tests/sink_crc: Remove kms_sink_crc_basic
URL   : https://patchwork.freedesktop.org/series/46563/
State : success

== Summary ==

= CI Bug Log - changes from CI_DRM_4488 -> IGTPW_1591 =

== Summary - SUCCESS ==

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/46563/revisions/1/mbox/

== Known issues ==

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

  === IGT changes ===

    ==== Issues hit ====

    igt@gem_exec_suspend@basic-s3:
      {fi-cfl-8109u}:     PASS -> INCOMPLETE (fdo#107187)

    
    ==== Possible fixes ====

    igt@debugfs_test@read_all_entries:
      fi-snb-2520m:       INCOMPLETE (fdo#103713) -> PASS

    igt@kms_chamelium@hdmi-hpd-fast:
      fi-kbl-7500u:       FAIL (fdo#102672, fdo#103841) -> SKIP

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

  fdo#102672 https://bugs.freedesktop.org/show_bug.cgi?id=102672
  fdo#103713 https://bugs.freedesktop.org/show_bug.cgi?id=103713
  fdo#103841 https://bugs.freedesktop.org/show_bug.cgi?id=103841
  fdo#107187 https://bugs.freedesktop.org/show_bug.cgi?id=107187


== Participating hosts (46 -> 42) ==

  Missing    (4): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-hsw-4200u 


== Build changes ==

    * IGT: IGT_4557 -> IGTPW_1591

  CI_DRM_4488: a3a527faf129e7901fdff5309a7e6df8abd72d13 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_1591: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1591/
  IGT_4557: 140a67c13aad2595ee6c72e41d14d35a793158b5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

-igt@kms_sink_crc_basic

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1591/issues.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/sink_crc: Remove kms_sink_crc_basic
  2018-07-14 23:39 [igt-dev] [PATCH i-g-t] tests/sink_crc: Remove kms_sink_crc_basic Dhinakaran Pandiyan
  2018-07-15  0:05 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2018-07-15  1:06 ` Patchwork
  2018-07-16 17:25 ` [igt-dev] [PATCH i-g-t] " Rodrigo Vivi
  2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2018-07-15  1:06 UTC (permalink / raw)
  To: Dhinakaran Pandiyan; +Cc: igt-dev

== Series Details ==

Series: tests/sink_crc: Remove kms_sink_crc_basic
URL   : https://patchwork.freedesktop.org/series/46563/
State : success

== Summary ==

= CI Bug Log - changes from IGT_4557_full -> IGTPW_1591_full =

== Summary - WARNING ==

  Minor unknown changes coming with IGTPW_1591_full need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_1591_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://patchwork.freedesktop.org/api/1.0/series/46563/revisions/1/mbox/

== Possible new issues ==

  Here are the unknown changes that may have been introduced in IGTPW_1591_full:

  === IGT changes ===

    ==== Warnings ====

    igt@gem_exec_schedule@deep-render:
      shard-kbl:          PASS -> SKIP

    igt@gem_mocs_settings@mocs-rc6-vebox:
      shard-kbl:          SKIP -> PASS

    
== Known issues ==

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

  === IGT changes ===

    ==== Issues hit ====

    igt@gem_workarounds@suspend-resume-context:
      shard-glk:          PASS -> FAIL (fdo#103375)

    igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
      shard-hsw:          PASS -> FAIL (fdo#100368)

    igt@kms_flip@plain-flip-fb-recreate:
      shard-glk:          PASS -> FAIL (fdo#100368) +1

    igt@kms_rotation_crc@sprite-rotation-270:
      shard-apl:          PASS -> FAIL (fdo#103925)

    igt@kms_setmode@basic:
      shard-apl:          PASS -> FAIL (fdo#99912)

    igt@kms_vblank@pipe-c-ts-continuation-suspend:
      shard-kbl:          PASS -> INCOMPLETE (fdo#103665)

    igt@perf_pmu@rc6-runtime-pm-long:
      shard-glk:          PASS -> FAIL (fdo#105010)
      shard-kbl:          PASS -> FAIL (fdo#105010)

    
    ==== Possible fixes ====

    {igt@gem_userptr_blits@readonly-mmap-unsync}:
      shard-snb:          INCOMPLETE (fdo#105411) -> SKIP

    igt@kms_flip@2x-plain-flip-ts-check-interruptible:
      shard-glk:          FAIL (fdo#100368) -> PASS

    igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
      shard-glk:          FAIL (fdo#103375) -> PASS

    igt@testdisplay:
      shard-glk:          INCOMPLETE (k.org#198133, fdo#103359) -> PASS

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

  fdo#100368 https://bugs.freedesktop.org/show_bug.cgi?id=100368
  fdo#103359 https://bugs.freedesktop.org/show_bug.cgi?id=103359
  fdo#103375 https://bugs.freedesktop.org/show_bug.cgi?id=103375
  fdo#103665 https://bugs.freedesktop.org/show_bug.cgi?id=103665
  fdo#103925 https://bugs.freedesktop.org/show_bug.cgi?id=103925
  fdo#105010 https://bugs.freedesktop.org/show_bug.cgi?id=105010
  fdo#105411 https://bugs.freedesktop.org/show_bug.cgi?id=105411
  fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912
  k.org#198133 https://bugzilla.kernel.org/show_bug.cgi?id=198133


== Participating hosts (5 -> 5) ==

  No changes in participating hosts


== Build changes ==

    * IGT: IGT_4557 -> IGTPW_1591
    * Linux: CI_DRM_4487 -> CI_DRM_4488

  CI_DRM_4487: 627ed020cac6a73f0a014537dac7191efbb57084 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_4488: a3a527faf129e7901fdff5309a7e6df8abd72d13 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_1591: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1591/
  IGT_4557: 140a67c13aad2595ee6c72e41d14d35a793158b5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1591/shards.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t] tests/sink_crc: Remove kms_sink_crc_basic
  2018-07-14 23:39 [igt-dev] [PATCH i-g-t] tests/sink_crc: Remove kms_sink_crc_basic Dhinakaran Pandiyan
  2018-07-15  0:05 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
  2018-07-15  1:06 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2018-07-16 17:25 ` Rodrigo Vivi
  2 siblings, 0 replies; 4+ messages in thread
From: Rodrigo Vivi @ 2018-07-16 17:25 UTC (permalink / raw)
  To: Dhinakaran Pandiyan; +Cc: igt-dev

On Sat, Jul 14, 2018 at 04:39:36PM -0700, Dhinakaran Pandiyan wrote:
> "drm/i915: Kill sink_crc for good" removes the kernel support for sink
> crc.
> 
> References: https://patchwork.freedesktop.org/series/46039/
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Signed-off-by: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com>

Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>

> ---
>  tests/Makefile.sources                |   1 -
>  tests/intel-ci/fast-feedback.testlist |   1 -
>  tests/kms_sink_crc_basic.c            | 156 --------------------------
>  tests/meson.build                     |   1 -
>  4 files changed, 159 deletions(-)
>  delete mode 100644 tests/kms_sink_crc_basic.c
> 
> diff --git a/tests/Makefile.sources b/tests/Makefile.sources
> index 8fec6ffe..4555045c 100644
> --- a/tests/Makefile.sources
> +++ b/tests/Makefile.sources
> @@ -204,7 +204,6 @@ TESTS_progs = \
>  	kms_rmfb \
>  	kms_rotation_crc \
>  	kms_setmode \
> -	kms_sink_crc_basic \
>  	kms_sysfs_edid_timing \
>  	kms_tv_load_detect \
>  	kms_universal_plane \
> diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
> index aa861d39..cb3346f8 100644
> --- a/tests/intel-ci/fast-feedback.testlist
> +++ b/tests/intel-ci/fast-feedback.testlist
> @@ -245,7 +245,6 @@ igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b
>  igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c
>  igt@kms_psr@basic
>  igt@kms_setmode@basic-clone-single-crtc
> -igt@kms_sink_crc_basic
>  igt@pm_backlight@basic-brightness
>  igt@pm_rpm@basic-pci-d3-state
>  igt@pm_rpm@basic-rte
> diff --git a/tests/kms_sink_crc_basic.c b/tests/kms_sink_crc_basic.c
> deleted file mode 100644
> index 1c31e30a..00000000
> --- a/tests/kms_sink_crc_basic.c
> +++ /dev/null
> @@ -1,156 +0,0 @@
> -/*
> - * Copyright © 2013 Intel Corporation
> - *
> - * Permission is hereby granted, free of charge, to any person obtaining a
> - * copy of this software and associated documentation files (the "Software"),
> - * to deal in the Software without restriction, including without limitation
> - * the rights to use, copy, modify, merge, publish, distribute, sublicense,
> - * and/or sell copies of the Software, and to permit persons to whom the
> - * Software is furnished to do so, subject to the following conditions:
> - *
> - * The above copyright notice and this permission notice (including the next
> - * paragraph) shall be included in all copies or substantial portions of the
> - * Software.
> - *
> - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
> - * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
> - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
> - * IN THE SOFTWARE.
> - *
> - */
> -
> -#include "igt.h"
> -#include "igt_sysfs.h"
> -#include <errno.h>
> -#include <limits.h>
> -#include <stdbool.h>
> -#include <stdio.h>
> -#include <string.h>
> -
> -#include "drm_fourcc.h"
> -
> -
> -enum color {
> -	RED,
> -	GREEN,
> -};
> -
> -typedef struct {
> -	int drm_fd;
> -	igt_display_t display;
> -	struct igt_fb fb_green, fb_red;
> -	igt_plane_t *primary;
> -} data_t;
> -
> -static void assert_color(int dir, enum color color)
> -{
> -	unsigned int r, g, b;
> -
> -	igt_require_f(igt_sysfs_scanf(dir,
> -				      "i915_sink_crc_eDP1",
> -				      "%4x%4x%4x",
> -				      &r, &g, &b) == 3,
> -		      "Sink CRC is unreliable on this machine. Try manual debug with --interactive-debug=no-crc\n");
> -
> -	/* Black screen is always invalid */
> -	igt_assert_neq(r | g | b, 0);
> -
> -	switch (color) {
> -	case RED:
> -		igt_assert_lt(0, r);
> -		igt_assert_eq(0, g);
> -		igt_assert_eq(0, b);
> -		igt_debug("sink CRC for red %.4x%.4x%.4x\n", r, g, b);
> -		break;
> -	case GREEN:
> -		igt_assert_eq(0, r);
> -		igt_assert_lt(0, g);
> -		igt_assert_eq(0, b);
> -		igt_debug("sink CRC for green %.4x%.4x%.4x\n", r, g, b);
> -		break;
> -	default:
> -		igt_fail(IGT_EXIT_FAILURE);
> -	}
> -}
> -
> -static void basic_sink_crc_check(data_t *data)
> -{
> -	int dir;
> -
> -	dir = igt_debugfs_dir(data->drm_fd);
> -
> -	/* Go Green */
> -	igt_plane_set_fb(data->primary, &data->fb_green);
> -	igt_display_commit(&data->display);
> -
> -	/* It should be Green */
> -	assert_color(dir, GREEN);
> -
> -	/* Go Red */
> -	igt_plane_set_fb(data->primary, &data->fb_red);
> -	igt_display_commit(&data->display);
> -
> -	/* It should be Red */
> -	assert_color(dir, RED);
> -
> -	close(dir);
> -}
> -
> -static void run_test(data_t *data)
> -{
> -	igt_display_t *display = &data->display;
> -	igt_output_t *output;
> -	drmModeModeInfo *mode;
> -	enum pipe pipe;
> -
> -	for_each_pipe_with_valid_output(display, pipe, output) {
> -		drmModeConnectorPtr c = output->config.connector;
> -
> -		if (c->connector_type != DRM_MODE_CONNECTOR_eDP)
> -			continue;
> -
> -		igt_output_set_pipe(output, pipe);
> -
> -		mode = igt_output_get_mode(output);
> -
> -		igt_create_color_fb(data->drm_fd,
> -				    mode->hdisplay, mode->vdisplay,
> -				    DRM_FORMAT_XRGB8888,
> -				    LOCAL_I915_FORMAT_MOD_X_TILED,
> -				    0.0, 1.0, 0.0,
> -				    &data->fb_green);
> -
> -		igt_create_color_fb(data->drm_fd,
> -				    mode->hdisplay, mode->vdisplay,
> -				    DRM_FORMAT_XRGB8888,
> -				    LOCAL_I915_FORMAT_MOD_X_TILED,
> -				    1.0, 0.0, 0.0,
> -				    &data->fb_red);
> -
> -		data->primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> -
> -		basic_sink_crc_check(data);
> -		return;
> -	}
> -
> -	igt_skip("no eDP with CRC support found\n");
> -}
> -
> -igt_simple_main
> -{
> -	data_t data = {};
> -
> -	igt_skip_on_simulation();
> -
> -	data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
> -
> -	kmstest_set_vt_graphics_mode();
> -	igt_display_init(&data.display, data.drm_fd);
> -
> -	run_test(&data);
> -
> -	igt_display_fini(&data.display);
> -}
> diff --git a/tests/meson.build b/tests/meson.build
> index 704bd13f..abf38a15 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -180,7 +180,6 @@ test_progs = [
>  	'kms_rmfb',
>  	'kms_rotation_crc',
>  	'kms_setmode',
> -	'kms_sink_crc_basic',
>  	'kms_sysfs_edid_timing',
>  	'kms_tv_load_detect',
>  	'kms_universal_plane',
> -- 
> 2.17.1
> 
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2018-07-16 17:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-14 23:39 [igt-dev] [PATCH i-g-t] tests/sink_crc: Remove kms_sink_crc_basic Dhinakaran Pandiyan
2018-07-15  0:05 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2018-07-15  1:06 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2018-07-16 17:25 ` [igt-dev] [PATCH i-g-t] " Rodrigo Vivi

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.