summaryrefslogtreecommitdiff
path: root/tests/kms_flip.c
diff options
context:
space:
mode:
authorArundhati Hagaragi <arundhati.hagaragi@intel.com>2021-04-09 22:43:52 +0530
committerKunal Joshi <kunal1.joshi@intel.com>2021-04-23 17:46:34 +0530
commit3f43ae9fd22dc5a517786b984dc3aa717997664f (patch)
treec17276d0d65e6b43a745cbf0fc2564ab83ae93ba /tests/kms_flip.c
parent5cc484c475db7d7ee4d44d195b22670a249df1e8 (diff)
Added tests description
Added description for following kms tests: tests/kms_color.c tests/kms_dp_dsc.c tests/kms_flip.c tests/kms_flip_tiling.c tests/kms_psr.c Signed-off-by: Arundhati Hagaragi <arundhati.hagaragi@intel.com> Cc: Gupta, Nidhi1 <nidhi1.gupta@intel.com> Reviewed-by: Gupta, Nidhi1 <nidhi1.gupta@intel.com>
Diffstat (limited to 'tests/kms_flip.c')
-rwxr-xr-xtests/kms_flip.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/kms_flip.c b/tests/kms_flip.c
index e0d009d2..64907c2c 100755
--- a/tests/kms_flip.c
+++ b/tests/kms_flip.c
@@ -1667,10 +1667,12 @@ igt_main
}
}
+ igt_describe("Tests that nonblocking reading fails correctly");
igt_subtest("nonblocking-read")
test_nonblocking_read(drm_fd);
for (i = 0; i < sizeof(tests) / sizeof (tests[0]); i++) {
+ igt_describe("Basic test for validating modeset, dpms and pageflips");
igt_subtest_with_dynamic_f("%s%s",
tests[i].flags & TEST_BASIC ? "basic-" : "",
tests[i].name)
@@ -1679,6 +1681,7 @@ igt_main
if (tests[i].flags & TEST_NO_2X_OUTPUT)
continue;
+ igt_describe("Test for validating modeset, dpms and pageflips with a pair of connected displays");
igt_subtest_with_dynamic_f("2x-%s", tests[i].name)
run_pair(tests[i].duration, tests[i].flags);
}
@@ -1705,12 +1708,14 @@ igt_main
if (tests[i].flags & (TEST_EINVAL | TEST_EBUSY | TEST_HANG))
continue;
+ igt_describe("Interrupt test for validating modeset, dpms and pageflips");
igt_subtest_with_dynamic_f("%s-interruptible", tests[i].name)
run_test(tests[i].duration, tests[i].flags);
if (tests[i].flags & TEST_NO_2X_OUTPUT)
continue;
+ igt_describe("Interrupt test for validating modeset, dpms and pageflips with pair of connected displays");
igt_subtest_with_dynamic_f("2x-%s-interruptible", tests[i].name)
run_pair(tests[i].duration, tests[i].flags);
}