summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanga Rahul Kumar <janga.rahul.kumar@intel.com>2022-06-06 12:47:36 +0530
committerZbigniew KempczyƄski <zbigniew.kempczynski@intel.com>2022-06-07 08:19:17 +0200
commitdacfa80158d586cd0fe322f25f5275f224a946dd (patch)
tree3a29c5e838ecddcb7ac87c0d7a05372e30ba9578
parent81d7fa97f6741b38574620763fe72b83a4eef2cd (diff)
tests/i915/gem_tiled_fence_blits : Added subtests description
Added test description to all the available subtests. Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Signed-off-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
-rw-r--r--tests/i915/gem_tiled_fence_blits.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/i915/gem_tiled_fence_blits.c b/tests/i915/gem_tiled_fence_blits.c
index 0b69c0de..1c621d1e 100644
--- a/tests/i915/gem_tiled_fence_blits.c
+++ b/tests/i915/gem_tiled_fence_blits.c
@@ -46,6 +46,10 @@
#include "igt.h"
#include "igt_x86.h"
+IGT_TEST_DESCRIPTION("Tests fence management problems related to tiled blits by performing "
+ "many blits on tiled buffer objects with fences enabled and with working "
+ "set larger than the aperture size.");
+
enum { width = 512, height = 512 };
static uint32_t linear[width * height];
static const int bo_size = sizeof(linear);
@@ -266,9 +270,11 @@ igt_main
count = (count + ncpus - 1) / ncpus;
}
+ igt_describe("Check basic functionality.");
igt_subtest("basic")
run_test(fd, 2, end);
+ igt_describe("Check with parallel execution.");
igt_subtest("normal") {
intel_allocator_multiprocess_start();
igt_fork(child, ncpus)