From b83fba5b3da66767dedb28120f319f0178ebd7cb Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Sat, 11 Jul 2020 22:04:47 -0700 Subject: [PATCH] Test: Move much of the logging to stdout --- src/platform/test/cinema-main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/platform/test/cinema-main.c b/src/platform/test/cinema-main.c index e92026854..0d0a36726 100644 --- a/src/platform/test/cinema-main.c +++ b/src/platform/test/cinema-main.c @@ -460,7 +460,7 @@ struct CInemaStream { static void _cinemaDimensionsChanged(struct mAVStream* stream, unsigned width, unsigned height) { struct CInemaStream* cistream = (struct CInemaStream*) stream; if (height != cistream->image->height || width != cistream->image->width) { - CIerr(1, "Size mismatch for video, expected %ux%u, got %ux%u\n", width, height, cistream->image->width, cistream->image->height); + CIlog(1, "Size mismatch for video, expected %ux%u, got %ux%u\n", width, height, cistream->image->width, cistream->image->height); if (*cistream->status == CI_PASS) { *cistream->status = CI_FAIL; } @@ -681,7 +681,7 @@ void CInemaTestRun(struct CInemaTest* test, struct Table* configTree) { stream.image = &expected; while (!expected.data) { if (!FFmpegDecoderRead(&decoder)) { - CIerr(1, "Failed to read more frames. EOF?\n"); + CIlog(1, "Failed to read more frames. EOF?\n"); test->status = CI_FAIL; break; }