mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-19 22:06:13 +00:00
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:
parent
ef51988ab2
commit
af1fbc427f
@ -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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user