mirror of
https://github.com/librempeg/librempeg
synced 2024-11-21 16:44:05 +00:00
checkasm/blockdsp: don't randomize the buffers for fill_block_tab
It ignores and overwrites the previous values. Fixes running the test under ubsan. Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
a1d10f7344
commit
96bfbf553a
@ -71,7 +71,8 @@ static void check_fill(BlockDSPContext *h){
|
||||
ptrdiff_t line_size, int h);
|
||||
if (check_func(h->fill_block_tab[t], "blockdsp.%s", tests[t].name)) {
|
||||
uint8_t value = rnd();
|
||||
randomize_buffers(tests[t].size);
|
||||
memset(buf0, 0, sizeof(*buf0) * n * n);
|
||||
memset(buf1, 0, sizeof(*buf1) * n * n);
|
||||
call_ref(buf0, value, n, n);
|
||||
call_new(buf1, value, n, n);
|
||||
if (memcmp(buf0, buf1, sizeof(*buf0) * n * n))
|
||||
|
Loading…
Reference in New Issue
Block a user