tests: increase memory limit for indexer process

otherwise fts-xapian with recent versions (1.4.9 at least) prints a
warning and the test fails
This commit is contained in:
Guillaume Girol 2021-04-24 16:59:53 +02:00
parent f4c8d4b298
commit 5248dce1ea

View File

@ -76,6 +76,8 @@ pkgs.nixosTest {
# special use depends on https://github.com/NixOS/nixpkgs/pull/93201
autoIndexExclude = [ (if (pkgs.lib.versionAtLeast pkgs.lib.version "21") then "\\Junk" else "Junk") ];
enforced = "yes";
# fts-xapian warns when memory is low, which makes the test fail
memoryLimit = 100000;
};
};
};