s/drmtest_subtest_block/drmtest_subtest/

The _block postfix meant to convey that a C statement/block must
follow can be misread as the verb to block. So drop it.

Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
Daniel Vetter
2013-08-12 12:15:16 +02:00
parent 16024841a1
commit 814b135541
33 changed files with 118 additions and 118 deletions
+2 -2
View File
@@ -214,7 +214,7 @@ int main(int argc, char **argv)
drm_intel_bufmgr_gem_enable_reuse(bufmgr);
batch = intel_batchbuffer_alloc(bufmgr, intel_get_drm_devid(fd));
drmtest_subtest_block("blitter")
drmtest_subtest("blitter")
fails += check_ring(bufmgr, batch, "blt", blt_copy);
/* Strictly only required on architectures with a separate BLT ring,
@@ -222,7 +222,7 @@ int main(int argc, char **argv)
*/
copy = get_render_copyfunc(batch->devid);
drmtest_subtest_block("render") {
drmtest_subtest("render") {
if (copy)
fails += check_ring(bufmgr, batch, "render", copy);
}