mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2026-08-22 22:02:57 +00:00
tests: sprinkle igt logging
All the cases that simply dump some debug information and couldn't be converted to some of the fancier macros. Some information output removed when it's redundant with the subtest status. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
@@ -77,7 +77,7 @@ igt_simple_main
|
||||
|
||||
gem_set_tiling(fd, handle, I915_TILING_X, TEST_STRIDE);
|
||||
|
||||
printf("testing untiled->tiled\n");
|
||||
igt_info("testing untiled->tiled\n");
|
||||
tiling_changed = false;
|
||||
gem_set_domain(fd, handle, I915_GEM_DOMAIN_GTT, 0);
|
||||
/* Too lazy to check for the correct tiling, and impossible anyway on
|
||||
@@ -93,7 +93,7 @@ igt_simple_main
|
||||
|
||||
gem_set_tiling(fd, handle, I915_TILING_X, TEST_STRIDE*2);
|
||||
|
||||
printf("testing tiled->tiled\n");
|
||||
igt_info("testing tiled->tiled\n");
|
||||
gem_set_domain(fd, handle, I915_GEM_DOMAIN_GTT, 0);
|
||||
for (i = 0; i < OBJECT_SIZE/4; i++) {
|
||||
int tile_row = i / (TEST_STRIDE * tile_height / 4);
|
||||
@@ -120,7 +120,7 @@ igt_simple_main
|
||||
ptr[i] = data[i] = i;
|
||||
|
||||
gem_set_tiling(fd, handle, I915_TILING_NONE, 0);
|
||||
printf("testing tiled->untiled\n");
|
||||
igt_info("testing tiled->untiled\n");
|
||||
tiling_changed = false;
|
||||
gem_set_domain(fd, handle, I915_GEM_DOMAIN_GTT, 0);
|
||||
/* Too lazy to check for the correct tiling, and impossible anyway on
|
||||
|
||||
Reference in New Issue
Block a user