diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-05-14 00:36:04 +0200 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-05-14 00:36:04 +0200 |
commit | e624fa8a2e1a31494c6e47a65e378e480882422d (patch) | |
tree | a79a5450e756efc23ebad0dcb1494ace10c9b66b /tests/gem_gtt_hog.c | |
parent | 351e7d395041b4b87ad28a201c81acac40cb397f (diff) |
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>
Diffstat (limited to 'tests/gem_gtt_hog.c')
-rw-r--r-- | tests/gem_gtt_hog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gem_gtt_hog.c b/tests/gem_gtt_hog.c index 7fd22bd0..5d475400 100644 --- a/tests/gem_gtt_hog.c +++ b/tests/gem_gtt_hog.c @@ -187,6 +187,6 @@ igt_simple_main igt_assert(status == 0); } gettimeofday(&end, NULL); - printf("Time to execute %lu children: %7.3fms\n", - ARRAY_SIZE(children), elapsed(&start, &end) / 1000); + igt_info("Time to execute %lu children: %7.3fms\n", + ARRAY_SIZE(children), elapsed(&start, &end) / 1000); } |