summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2016-02-18 10:27:07 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2016-02-18 10:28:39 +0000
commite85c530eab9ef20b2708ff36bfc6f6fa3990e1f4 (patch)
tree05c143837289b0246748a5e3272b49fbce623206
parent3990dd87b60bf8092671cb3c536666936b460b0c (diff)
igt: Mark gem_cs_tlb/gem_cs_prefetch as a pair of basic GTT layout tests
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r--tests/gem_cs_prefetch.c2
-rw-r--r--tests/gem_cs_tlb.c4
2 files changed, 2 insertions, 4 deletions
diff --git a/tests/gem_cs_prefetch.c b/tests/gem_cs_prefetch.c
index 6d6904568..ab40daff4 100644
--- a/tests/gem_cs_prefetch.c
+++ b/tests/gem_cs_prefetch.c
@@ -151,6 +151,6 @@ igt_main
igt_skip_on_simulation();
for (e = intel_execution_engines; e->name; e++)
- igt_subtest_f("%s", e->name)
+ igt_subtest_f("%s%s", e->exec_id ? "" : "basic-", e->name)
test_ring(e->exec_id | e->flags);
}
diff --git a/tests/gem_cs_tlb.c b/tests/gem_cs_tlb.c
index 0e6299262..0a7c8dab9 100644
--- a/tests/gem_cs_tlb.c
+++ b/tests/gem_cs_tlb.c
@@ -125,8 +125,6 @@ static void run_on_ring(int fd, unsigned ring_id, const char *ring_name)
sprintf(buf, "Testing %s cs tlb coherency: ", ring_name);
for (i = 0; i < BATCH_SIZE/64; i++) {
- igt_progress(buf, i, BATCH_SIZE/64);
-
execobj.handle = obj[i&1].handle;
obj[i&1].batch[i*64/4] = MI_BATCH_BUFFER_END;
execbuf.batch_start_offset = i*64;
@@ -151,7 +149,7 @@ igt_main
fd = drm_open_driver(DRIVER_INTEL);
for (e = intel_execution_engines; e->name; e++)
- igt_subtest_f("%s", e->name)
+ igt_subtest_f("%s%s", e->exec_id ? "" : "basic-", e->name)
run_on_ring(fd, e->exec_id | e->flags, e->name);
igt_fixture