]> git.scottworley.com Git - pinch/blobdiff - tests/lib/test-setup.sh
fallback git-cache 1.3.1 -> 1.4.1
[pinch] / tests / lib / test-setup.sh
index f3eb661a175ff2b588f0aed2e4dfed6e1874e6e5..e4260f4646f85a73fdca62b1c81a5e6d7579ed93 100644 (file)
@@ -8,7 +8,9 @@ export GIT_AUTHOR_EMAIL=auto@mati.on
 export GIT_COMMITTER_EMAIL=auto@mati.on
 
 cache_dir=$(mktemp -d)
+data_dir=$(mktemp -d)
 export XDG_CACHE_HOME=$cache_dir
+export XDG_DATA_HOME=$data_dir
 
 nix_store=$(mktemp -d)
 nix_state=$(mktemp -d)
@@ -41,6 +43,7 @@ test_cleanup() {
   if [ "$repo_dir"  ];then rm -rf "$repo_dir";  fi
   if [ "$conf"      ];then rm     "$conf";      fi
   if [ "$cache_dir" ];then rm -rf "$cache_dir"; fi
+  if [ "$data_dir"  ];then rm -rf "$data_dir";  fi
   if [ "$nix_store" ];then rm -rf "$nix_store"; fi
   if [ "$nix_state" ];then rm -rf "$nix_state"; fi
 }