summaryrefslogtreecommitdiff
path: root/tests/gem_stress.c
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2014-06-13 15:32:50 +0200
committerDaniel Vetter <daniel.vetter@ffwll.ch>2014-06-13 18:09:05 +0200
commit6b73a9a2887fb45fc43b75c918daf0b50d2a44b9 (patch)
tree7918925f265c047e8ab9acc5a22080017fe62bcf /tests/gem_stress.c
parent652e5441504ddded9d6b138cd6df3447ed9b2e74 (diff)
tests: Don't use stderr for informational messages
These should go to stdout instead. The next patch will clean this up with cocci, so no change from fprintf(stdout, to printf( here. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'tests/gem_stress.c')
-rw-r--r--tests/gem_stress.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gem_stress.c b/tests/gem_stress.c
index e6a6ce69..df2cf250 100644
--- a/tests/gem_stress.c
+++ b/tests/gem_stress.c
@@ -924,7 +924,7 @@ int main(int argc, char **argv)
fan_in_and_check();
- fprintf(stderr, "num failed tiles %u, max incoherent bytes %zd\n",
+ fprintf(stdout, "num failed tiles %u, max incoherent bytes %zd\n",
stats.num_failed, stats.max_failed_reads*sizeof(uint32_t));
intel_batchbuffer_free(batch);