[igt-dev] [PATCH i-g-t v2] tests/kms_cursor_edge_walk:Add subtest description
Arundhati Hagaragi
arundhati.hagaragi at intel.com
Mon Dec 21 20:27:53 UTC 2020
Added description for all subtests
Signed-off-by: Arundhati Hagaragi <arundhati.hagaragi at intel.com>
Cc: Gupta, Nidhi1 <nidhi1.gupta at intel.com>
Cc: B S, Karthik <Karthik.B.S at intel.com>
Cc: Patnana, Venkata Sai <Venkata.Sai.Patnana at intel.com>
v2: modified subtests description (Sai)
---
tests/kms_cursor_edge_walk.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tests/kms_cursor_edge_walk.c b/tests/kms_cursor_edge_walk.c
index 32b8e711..69662afe 100644
--- a/tests/kms_cursor_edge_walk.c
+++ b/tests/kms_cursor_edge_walk.c
@@ -339,21 +339,25 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_fixture
igt_require(data.curw <= max_curw && data.curh <= max_curh);
+ igt_describe("Checking cursor by walking left edge of screen");
igt_subtest_f("pipe-%s-%dx%d-left-edge",
kmstest_pipe_name(data.pipe),
data.curw, data.curh)
test_crtc(&data, EDGE_LEFT);
+ igt_describe("Checking cursor by walking right edge of screen");
igt_subtest_f("pipe-%s-%dx%d-right-edge",
kmstest_pipe_name(data.pipe),
data.curw, data.curh)
test_crtc(&data, EDGE_RIGHT);
+ igt_describe("Checking cursor by walking top edge of screen");
igt_subtest_f("pipe-%s-%dx%d-top-edge",
kmstest_pipe_name(data.pipe),
data.curw, data.curh)
test_crtc(&data, EDGE_TOP);
+ igt_describe("Checking cursor by walking bottom edge of screen");
igt_subtest_f("pipe-%s-%dx%d-bottom-edge",
kmstest_pipe_name(data.pipe),
data.curw, data.curh)
--
2.25.1
More information about the igt-dev
mailing list