mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 01:16:18 +00:00
gem_write_read_ring_switch: Copy the missing igt_require
An oversight in the mass conversion to the new framework as the test was called from two locations. Ideally, the checks could be moved back to the caller and the framework still work. This is just the patch of least resistence. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=68091
This commit is contained in:
parent
6a746c82ab
commit
4f8c9a2c38
@ -204,9 +204,14 @@ int main(int argc, char **argv)
|
|||||||
for (i = 0; i < ARRAY_SIZE(tests); i++) {
|
for (i = 0; i < ARRAY_SIZE(tests); i++) {
|
||||||
char name[180];
|
char name[180];
|
||||||
snprintf(name, sizeof(name), "%s-interruptible", tests[i].name);
|
snprintf(name, sizeof(name), "%s-interruptible", tests[i].name);
|
||||||
igt_subtest(name)
|
igt_subtest(name) {
|
||||||
|
gem_require_ring(fd, tests[i].ring);
|
||||||
|
/* Testing render only makes sense with separate blt. */
|
||||||
|
if (tests[i].ring == I915_EXEC_RENDER)
|
||||||
|
gem_require_ring(fd, I915_EXEC_BLT);
|
||||||
run_test(tests[i].ring, name);
|
run_test(tests[i].ring, name);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
igt_stop_signal_helper();
|
igt_stop_signal_helper();
|
||||||
|
|
||||||
drm_intel_bufmgr_destroy(bufmgr);
|
drm_intel_bufmgr_destroy(bufmgr);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user