mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 16:48:27 -05:00
95d6297db8
1. Add `redis-server test all` support to run all tests. 2. Add redis test to daily ci. 3. Add `--accurate` option to run slow tests for more iterations (so that by default we run less cycles (shorter time, and less prints). 4. Move dict benchmark to REDIS_TEST. 5. fix some leaks in tests 6. make quicklist tests run on a specific fill set of options rather than huge ranges 7. move some prints in quicklist test outside their loops to reduce prints 8. removing sds.h from dict.c since it is now used in both redis-server and redis-cli (uses hiredis sds)
14 lines
230 B
C
14 lines
230 B
C
#ifndef CRC64_H
|
|
#define CRC64_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void crc64_init(void);
|
|
uint64_t crc64(uint64_t crc, const unsigned char *s, uint64_t l);
|
|
|
|
#ifdef REDIS_TEST
|
|
int crc64Test(int argc, char *argv[], int accurate);
|
|
#endif
|
|
|
|
#endif
|