[igt-dev] [PATCH i-g-t] tests/kms_cursor_edge_walk:Add subtest description
Arundhati Hagaragi
arundhati.hagaragi at intel.com
Sun Dec 13 19:25:43 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>
---
tests/kms_cursor_edge_walk.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/tests/kms_cursor_edge_walk.c b/tests/kms_cursor_edge_walk.c
index 32b8e711..9f86c8de 100644
--- a/tests/kms_cursor_edge_walk.c
+++ b/tests/kms_cursor_edge_walk.c
@@ -339,21 +339,29 @@ 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 CHV pipe C 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 CHV pipe C 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 CHV pipe C 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 CHV pipe C 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