Skip to content

Commit

Permalink
Merge pull request git-for-windows#1911 from benpeart/git_test_fscach…
Browse files Browse the repository at this point in the history
…e-gfw

fscache: add GIT_TEST_FSCACHE support
  • Loading branch information
dscho committed Dec 1, 2018
2 parents 751240b + 38d6355 commit c10e824
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
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#include "../../hashmap.h"
#include "../win32.h"
#include "fscache.h"
#include "config.h"

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

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

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

Expand Down
3 changes: 3 additions & 0 deletions t/README
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,9 @@ GIT_TEST_MULTI_PACK_INDEX=<boolean>, when true, forces the multi-pack-
index to be written after every 'git repack' command, and overrides the
'core.multiPackIndex' setting to true.

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

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

Expand Down

0 comments on commit c10e824

Please sign in to comment.