summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2016-10-10 11:17:00 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2016-10-10 11:17:46 +0100
commitaf3c45d0cede8678796c82eba4191f552eddde59 (patch)
treee4ebdc55e9f98d681bbe716211a8d53756ef8723 /tests
parent3dfa47c1a996b32869caae98f2909850b2635481 (diff)
igt/gem_ctx_thrash: Include with-execlists indicator
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'tests')
-rw-r--r--tests/gem_ctx_thrash.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/gem_ctx_thrash.c b/tests/gem_ctx_thrash.c
index 20edccbf..b0711894 100644
--- a/tests/gem_ctx_thrash.c
+++ b/tests/gem_ctx_thrash.c
@@ -93,8 +93,9 @@ static unsigned get_num_contexts(int fd, int num_engines)
}
count = 3 * (ggtt_size / size) / 2;
- igt_info("Creating %lld contexts (assuming of size %lld)\n",
- (long long)count, (long long)size);
+ igt_info("Creating %lld contexts (assuming of size %lld%s)\n",
+ (long long)count, (long long)size,
+ has_execlists(fd) ? " with execlists" : "");
intel_require_memory(count, size, CHECK_RAM | CHECK_SWAP);
return count;