Skip to content

Commit

Permalink
Merge pull request #1911 from benpeart/git_test_fscache-gfw
Browse files Browse the repository at this point in the history
fscache: add GIT_TEST_FSCACHE support
  • Loading branch information
dscho committed Nov 5, 2018
2 parents af8558d + 8ce7855 commit 5af6eeb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions compat/win32/fscache.c
Expand Up @@ -2,6 +2,7 @@
#include "../../hashmap.h" #include "../../hashmap.h"
#include "../win32.h" #include "../win32.h"
#include "fscache.h" #include "fscache.h"
#include "config.h"


static int initialized; static int initialized;
static volatile long enabled; static volatile long enabled;
Expand Down Expand Up @@ -397,7 +398,11 @@ int fscache_enable(int enable)
int result; int result;


if (!initialized) { if (!initialized) {
int fscache = git_env_bool("GIT_TEST_FSCACHE", -1);

/* allow the cache to be disabled entirely */ /* allow the cache to be disabled entirely */
if (fscache != -1)
core_fscache = fscache;
if (!core_fscache) if (!core_fscache)
return 0; return 0;


Expand Down
3 changes: 3 additions & 0 deletions t/README
Expand Up @@ -319,6 +319,9 @@ GIT_TEST_OE_DELTA_SIZE=<n> exercises the uncomon pack-objects code
path where deltas larger than this limit require extra memory path where deltas larger than this limit require extra memory
allocation for bookkeeping. allocation for bookkeeping.


GIT_TEST_FSCACHE=<boolean> exercises the uncommon fscache code path
which adds a cache below mingw's lstat and dirent implementations.

Naming Tests Naming Tests
------------ ------------


Expand Down

0 comments on commit 5af6eeb

Please sign in to comment.