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>
This commit is contained in:
Daniel Vetter
2014-06-13 15:32:50 +02:00
parent 652e544150
commit 6b73a9a288
3 changed files with 19 additions and 18 deletions
+1 -1
View File
@@ -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);