list(APPEND TEST_SRCS
test_adler32.cc # adler32_neon(), etc
test_compare256.cc # compare256_neon(), etc
+ test_compare256_rle.cc # compare256_rle(), etc
test_crc32.cc # crc32_acle(), etc
test_inflate_sync.cc # expects a certain compressed block layout
test_main.cc # cpu_check_features()
uint8_t str1[] = {'a', 'a', 0};
uint8_t *str2;
- str2 = (uint8_t *)PREFIX3(alloc_aligned)(NULL, NULL, 1, MAX_COMPARE_SIZE, 64);
+ str2 = (uint8_t *)PREFIX(zcalloc)(NULL, 1, MAX_COMPARE_SIZE);
ASSERT_TRUE(str2 != NULL);
memset(str2, 'a', MAX_COMPARE_SIZE);
str2[i] = 'a';
}
- PREFIX3(free_aligned)(NULL, NULL, str2);
+ PREFIX(zcfree)(NULL, str2);
}
#define TEST_COMPARE256_RLE(name, func, support_flag) \