diff options
-rw-r--r-- | selftest/knownfail | 1 | ||||
-rw-r--r-- | source3/torture/torture.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/selftest/knownfail b/selftest/knownfail index 220df1c232..4a9f99e8cd 100644 --- a/selftest/knownfail +++ b/selftest/knownfail @@ -6,7 +6,6 @@ ^samba3.blackbox.failure.failure # this is designed to fail, for testing our test infrastructure .*driver.add_driver_timestamps # we only can store dates, not timestamps -^samba3.smbtorture_s3.LOCAL-MEMCACHE #fails ^samba3.smbtorture_s3.LOCAL-TALLOC-DICT #fails ^samba3.posix_s3.nbt.dgram.*netlogon2 ^samba3.*rap.sam.*.useradd # Not provided by Samba 3 diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 8535333a28..8bc9cefeef 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -8314,7 +8314,7 @@ static bool run_local_memcache(int dummy) size_t size1, size2; bool ret = false; - cache = memcache_init(NULL, 100); + cache = memcache_init(NULL, sizeof(void *) == 8 ? 200 : 100); if (cache == NULL) { printf("memcache_init failed\n"); |