public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Ramalingam C <ramalingam.c@intel.com>
To: igt-dev <igt-dev@lists.freedesktop.org>
Cc: Daniel Vetter <daniel@ffwll.ch>
Subject: [igt-dev] [PATCH i-g-t v8 2/8] kms_content_protection: Link Integrity Check subtest
Date: Wed,  3 Jul 2019 13:32:19 +0530	[thread overview]
Message-ID: <20190703080225.10915-3-ramalingam.c@intel.com> (raw)
In-Reply-To: <20190703080225.10915-1-ramalingam.c@intel.com>

Existing Link integrity check test is moved into dedicated subtest.
This helps to reduce the execution time of other tests by removing the
repeated Link integrity check on every other tests.

v2:
  s/reduced/reduce [Uma]

Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
---
 tests/kms_content_protection.c | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c
index 5f7d8ff9b52b..c86fe936f12f 100644
--- a/tests/kms_content_protection.c
+++ b/tests/kms_content_protection.c
@@ -38,6 +38,7 @@ struct data {
 } data;
 
 #define CP_DPMS					(1 << 0)
+#define CP_LIC					(1 << 1)
 
 #define CP_UNDESIRED				0
 #define CP_DESIRED				1
@@ -265,7 +266,9 @@ static void test_content_protection_on_output(igt_output_t *output,
 
 		modeset_with_fb(pipe, output, s);
 		test_cp_enable_with_retry(output, s, 3);
-		test_cp_lic(output);
+
+		if (data.cp_tests & CP_LIC)
+			test_cp_lic(output);
 
 		if (data.cp_tests & CP_DPMS) {
 			igt_pipe_set_prop_value(display, pipe,
@@ -377,6 +380,12 @@ igt_main
 		test_content_protection(COMMIT_ATOMIC);
 	}
 
+	igt_subtest("LIC") {
+		igt_require(data.display.is_atomic);
+		data.cp_tests = CP_LIC;
+		test_content_protection(COMMIT_ATOMIC);
+	}
+
 	igt_fixture
 		igt_display_fini(&data.display);
 }
-- 
2.19.1

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

  parent reply	other threads:[~2019-07-03 15:01 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-03  8:02 [igt-dev] [PATCH i-g-t v8 0/8] HDCP2.2 Tests Ramalingam C
2019-07-03  8:02 ` [igt-dev] [PATCH i-g-t v8 1/8] kms_content_protection: Tests are defined by flags Ramalingam C
2019-07-03  8:02 ` Ramalingam C [this message]
2019-07-03  8:02 ` [igt-dev] [PATCH i-g-t v8 3/8] kms_content_protection: Content type support Ramalingam C
2019-07-03  8:02 ` [igt-dev] [PATCH i-g-t v8 4/8] kms_content_protection: test teardown and rebuild of I915-mei I/F Ramalingam C
2019-07-03  8:02 ` [igt-dev] [PATCH i-g-t v8 5/8] kms_content_protection: test content type change Ramalingam C
2019-07-03  8:02 ` [igt-dev] [PATCH i-g-t v8 6/8] kms_content_protection: uevent for HDCP status change Ramalingam C
2019-07-03  8:02 ` [igt-dev] [PATCH i-g-t v8 7/8] kms_content_protection: SRM Testing Ramalingam C
2019-07-03  8:02 ` [igt-dev] [PATCH i-g-t v8 8/8] DO NOT MERGE: CP in fast feedback list Ramalingam C
2019-07-03 15:19 ` [igt-dev] ✗ Fi.CI.BAT: failure for HDCP2.2 Tests (rev8) Patchwork
2019-07-03 15:29 ` [igt-dev] ✗ GitLab.Pipeline: warning " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2019-07-03  9:54 [igt-dev] [PATCH i-g-t v8 0/8] HDCP2.2 Tests Ramalingam C
2019-07-03  9:54 ` [igt-dev] [PATCH i-g-t v8 2/8] kms_content_protection: Link Integrity Check subtest Ramalingam C

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190703080225.10915-3-ramalingam.c@intel.com \
    --to=ramalingam.c@intel.com \
    --cc=daniel@ffwll.ch \
    --cc=igt-dev@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox