From 347441a44d3ddd8aaa0fd29b396c8eb899b8570c Mon Sep 17 00:00:00 2001 From: Kevin David Date: Sat, 24 Oct 2015 16:17:00 -0400 Subject: [PATCH] README: recommend 512MB ramdisk instead of 256MB The CanFilterLargeFiles test requires more than 256MB of space on a disk it seems: `LibGit2Sharp.Tests.FilterFixture.CanFilterLargeFiles: LibGit2Sharp.LibGit2SharpException : There is not enough space on the disk.` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 692fc1012..e82907553 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ You can do a few things to optimize running unit-tests on Windows: * If the unit-test framework cannot find the specified folder at runtime, it will fall back to the default location. 2. Configure your anti-virus software to ignore the `LibGit2TestPath` path. 3. Install a RAM disk like [IMDisk](http://www.ltr-data.se/opencode.html/#ImDisk) and set `LibGit2TestPath` to use it. - * Use `imdisk.exe -a -s 256M -m X: -p "/fs:fat /q /v:ramdisk /y"` to create a RAM disk. This command requires elevated privileges and can be placed into a scheduled task or run manually before you begin unit-testing. + * Use `imdisk.exe -a -s 512M -m X: -p "/fs:fat /q /v:ramdisk /y"` to create a RAM disk. This command requires elevated privileges and can be placed into a scheduled task or run manually before you begin unit-testing. ## Authors