vppinfra: fix memcpy test buffer size

Fix dst buffer size in memcpy_x86_64 test.

Type: fix
Signed-off-by: Dmitry Valter <d-valter@yandex-team.com>
Change-Id: I2b4502a62d9346d729b83522f4ea01c98a5b961c
This commit is contained in:
Dmitry Valter
2024-01-05 17:02:55 +00:00
committed by Damjan Marion
parent ebe2371e6a
commit 0bef4cf39c

View File

@@ -98,7 +98,7 @@ static clib_error_t *
test_clib_memcpy_x86_64 (clib_error_t *err)
{
u8 src[MAX_LEN + 192];
u8 dst[MAX_LEN + 128];
u8 dst[MAX_LEN + 192];
for (int i = 0; i < ARRAY_LEN (src); i++)
src[i] = i & 0x7f;