[igt-dev] [PATCH i-g-t] i915/gem_tiled_blits: Added description of subtests

apoorva1.singh at intel.com apoorva1.singh at intel.com
Sun Nov 1 12:14:46 UTC 2020


From: Apoorva Singh <apoorva1.singh at intel.com>

Signed-off-by: Apoorva Singh <apoorva1.singh at intel.com>
Cc: Melkaveri, Arjun <arjun.melkaveri at intel.com>
---
 tests/i915/gem_tiled_blits.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/tests/i915/gem_tiled_blits.c b/tests/i915/gem_tiled_blits.c
index 36e96785..3ea4dcd7 100644
--- a/tests/i915/gem_tiled_blits.c
+++ b/tests/i915/gem_tiled_blits.c
@@ -189,15 +189,23 @@ igt_main
 		count = (count + ncpus - 1) / ncpus;
 	}
 
+	igt_describe("Validates the content of small number of tiled buffer objects "
+	       "after random tiled blits among each other");
 	igt_subtest("basic")
 		run_test(fd, 2);
 
+	igt_describe("Validates the content of large number of tiled buffer objects "
+	       "(working set larger than the aperture size) after random tiled blits among "
+	       "each other, performed on multiple parallel threads");
 	igt_subtest("normal") {
 		igt_fork(child, ncpus)
 			run_test(fd, count);
 		igt_waitchildren();
 	}
 
+	igt_describe("Validates the content of large number of tiled buffer objects "
+	       "(working set larger than the aperture size) after random tiled blits among "
+	       "each other, performed on multiple parallel threads in an interrupting environment");
 	igt_subtest("interruptible") {
 		igt_fork_signal_helper();
 		igt_fork(child, ncpus)
-- 
2.25.1



More information about the igt-dev mailing list