Add --large-memory flag for REDIS_TEST to enable tests that consume more than 100mb (#9784)

This is a preparation step in order to add a new test in quicklist.c see #9776
This commit is contained in:
sundb
2021-11-16 08:55:10 +02:00
committed by GitHub
parent aba70df48f
commit e725d737fb
26 changed files with 62 additions and 45 deletions
+2 -2
View File
@@ -959,10 +959,10 @@ static void test_ll2string(void) {
}
#define UNUSED(x) (void)(x)
int utilTest(int argc, char **argv, int accurate) {
int utilTest(int argc, char **argv, int flags) {
UNUSED(argc);
UNUSED(argv);
UNUSED(accurate);
UNUSED(flags);
test_string2ll();
test_string2l();