igt/gem_ringfill: Only check for rendercopy when testing render ring

Overzealous test runner ftl.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=78591
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
Chris Wilson 2014-05-15 13:37:03 +01:00
parent ef51988ab2
commit af1fbc427f

View File

@ -197,7 +197,6 @@ static void blt_copy(struct intel_batchbuffer *batch,
drm_intel_bufmgr *bufmgr; drm_intel_bufmgr *bufmgr;
struct intel_batchbuffer *batch; struct intel_batchbuffer *batch;
igt_render_copyfunc_t copy;
int fd; int fd;
igt_main igt_main
@ -215,16 +214,17 @@ igt_main
igt_subtest("blitter") igt_subtest("blitter")
check_ring(bufmgr, batch, "blt", blt_copy); check_ring(bufmgr, batch, "blt", blt_copy);
igt_fixture { /* Strictly only required on architectures with a separate BLT ring,
/* Strictly only required on architectures with a separate BLT ring, * but lets stress everybody.
* but lets stress everybody. */
*/ igt_subtest("render") {
igt_render_copyfunc_t copy;
copy = igt_get_render_copyfunc(batch->devid); copy = igt_get_render_copyfunc(batch->devid);
igt_require(copy); igt_require(copy);
}
igt_subtest("render")
check_ring(bufmgr, batch, "render", copy); check_ring(bufmgr, batch, "render", copy);
}
igt_fixture { igt_fixture {
intel_batchbuffer_free(batch); intel_batchbuffer_free(batch);