From 4db571e5164c10c3745c098227495c376e66e025 Mon Sep 17 00:00:00 2001 From: Kieran Kunhya Date: Sat, 8 Feb 2025 16:45:33 +0000 Subject: [PATCH] checkasm/v210enc.c: Use checkasm_check() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This gives more informative printouts if the tests fail, if checkasm is run with "-v". Signed-off-by: Martin Storsjö --- tests/checkasm/v210enc.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tests/checkasm/v210enc.c b/tests/checkasm/v210enc.c index 9fb8321c25..106f00c851 100644 --- a/tests/checkasm/v210enc.c +++ b/tests/checkasm/v210enc.c @@ -72,11 +72,10 @@ randomize_buffers(mask); \ call_ref(y0 + y_offset, u0 + uv_offset, v0 + uv_offset, dst0, width); \ call_new(y1 + y_offset, u1 + uv_offset, v1 + uv_offset, dst1, width); \ - if (memcmp(y0, y1, BUF_SIZE * sizeof(type)) \ - || memcmp(u0, u1, BUF_SIZE * sizeof(type) / 2) \ - || memcmp(v0, v1, BUF_SIZE * sizeof(type) / 2) \ - || memcmp(dst0, dst1, width * 8 / 3)) \ - fail(); \ + checkasm_check(type, y0, 0, y1, 0, BUF_SIZE, 1, "y"); \ + checkasm_check(type, u0, 0, u1, 0, BUF_SIZE / 2, 1, "u"); \ + checkasm_check(type, v0, 0, v1, 0, BUF_SIZE / 2, 1, "v"); \ + checkasm_check(uint8_t, dst0, 0, dst1, 0, width * 8 / 3, 1, "dst"); \ bench_new(y1 + y_offset, u1 + uv_offset, v1 + uv_offset, dst1, width); \ } \ } while (0)